diff --git a/.github/workflows/documentation.yml b/.github/workflows/documentation.yml index e432b6b..7ed7e9e 100644 --- a/.github/workflows/documentation.yml +++ b/.github/workflows/documentation.yml @@ -15,6 +15,6 @@ jobs: with: python-version: 3.x - run: | - pip install mkdocs-material mkdocs-redirects + pip install mkdocs-material cd docs mkdocs gh-deploy --force \ No newline at end of file diff --git a/esbuild.config.mjs b/esbuild.config.mjs index b13282b..be2cafe 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -15,7 +15,7 @@ const context = await esbuild.context({ banner: { js: banner, }, - entryPoints: ["main.ts"], + entryPoints: ["src/main.ts"], bundle: true, external: [ "obsidian", diff --git a/manifest.json b/manifest.json index 939251b..9c759fb 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "api-request", "name": "APIRequest", - "version": "1.2.1", + "version": "1.2.2", "minAppVersion": "0.15.0", "description": "Request and retrieve data from APIs. The responses are delivered in a JSON format for easy integration with your notes.", "author": "rooyca", diff --git a/package.json b/package.json index 4f4053e..84c5fe0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "api-request", - "version": "1.2.1", + "version": "1.2.2", "description": "Request and retrieve data from APIs. The responses are delivered in a JSON format for easy integration with your notes.", "main": "main.js", "scripts": { diff --git a/frontmatterUtils.ts b/src/frontmatterUtils.ts similarity index 100% rename from frontmatterUtils.ts rename to src/frontmatterUtils.ts diff --git a/styles.css b/src/styles.css similarity index 100% rename from styles.css rename to src/styles.css