From 693f5b910479f03b48b98237e33723498d9b3b97 Mon Sep 17 00:00:00 2001 From: rooyca Date: Thu, 9 May 2024 22:18:12 -0500 Subject: [PATCH] update(style): copy button and list rendering --- .github/workflows/documentation.yml | 2 +- esbuild.config.mjs | 2 +- manifest.json | 2 +- package.json | 2 +- frontmatterUtils.ts => src/frontmatterUtils.ts | 0 styles.css => src/styles.css | 0 6 files changed, 4 insertions(+), 4 deletions(-) rename frontmatterUtils.ts => src/frontmatterUtils.ts (100%) rename styles.css => src/styles.css (100%) 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