├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ ├── publish.yml │ └── release.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── __mocks__ └── obsidian.ts ├── bumpversion.sh ├── docs └── README.md ├── esbuild.config.mjs ├── jest.config.js ├── manifest.json ├── package.json ├── src ├── __tests__ │ └── utils.test.ts ├── components │ └── inputModal.ts ├── file_system_sync.ts ├── main.ts ├── settings.ts ├── supabase_sync.ts └── utils.ts ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | npm node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/.github/workflows/publish.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/obsidian.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/__mocks__/obsidian.ts -------------------------------------------------------------------------------- /bumpversion.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/bumpversion.sh -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/docs/README.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/jest.config.js -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/package.json -------------------------------------------------------------------------------- /src/__tests__/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/src/__tests__/utils.test.ts -------------------------------------------------------------------------------- /src/components/inputModal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/src/components/inputModal.ts -------------------------------------------------------------------------------- /src/file_system_sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/src/file_system_sync.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/settings.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/src/settings.ts -------------------------------------------------------------------------------- /src/supabase_sync.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/src/supabase_sync.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/src/utils.ts -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- 1 | .note_template { 2 | width: calc(100%); 3 | } -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fleetingnotes/fleeting-notes-obsidian/HEAD/versions.json --------------------------------------------------------------------------------