├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── release.yml ├── .gitignore ├── .npmrc ├── LICENSE ├── README.md ├── esbuild.config.mjs ├── main.ts ├── manifest.json ├── package.json ├── screenshots ├── new-settings-page.png ├── remote-url.png └── ribbon-button.png ├── styles.css ├── tsconfig.json ├── version-bump.mjs └── versions.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | 3 | main.js 4 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | tag-version-prefix="" -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/README.md -------------------------------------------------------------------------------- /esbuild.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/esbuild.config.mjs -------------------------------------------------------------------------------- /main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/main.ts -------------------------------------------------------------------------------- /manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/manifest.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/package.json -------------------------------------------------------------------------------- /screenshots/new-settings-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/screenshots/new-settings-page.png -------------------------------------------------------------------------------- /screenshots/remote-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/screenshots/remote-url.png -------------------------------------------------------------------------------- /screenshots/ribbon-button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/screenshots/ribbon-button.png -------------------------------------------------------------------------------- /styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/styles.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/tsconfig.json -------------------------------------------------------------------------------- /version-bump.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/version-bump.mjs -------------------------------------------------------------------------------- /versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kevinmkchin/Obsidian-GitHub-Sync/HEAD/versions.json --------------------------------------------------------------------------------