From b53d22be59871db7dc9af4aa8a9ca1205a852ec7 Mon Sep 17 00:00:00 2001 From: Ruben Carlo Benante Date: Wed, 5 Aug 2026 21:50:16 -0300 Subject: [PATCH] release 0.2.1 --- .gitignore | 4 ++-- VERSION | 2 +- esbuild.config.mjs | 2 +- eslint.config.mts | 2 +- manifest.json | 2 +- package.json | 2 +- versions.json | 3 ++- 7 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.gitignore b/.gitignore index ab3d31d..e2252d5 100644 --- a/.gitignore +++ b/.gitignore @@ -29,8 +29,8 @@ # npm node_modules -# Don't include the compiled main.js file in the repo. -# They should be uploaded to GitHub releases instead. +# Build output (main.js builds into build/; ignore both). Ships via releases. +build/ main.js # Exclude sourcemaps diff --git a/VERSION b/VERSION index 0be21c5..beac7ba 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -ob2qualkard v0.2 +ob2qualkard 0.2.1 diff --git a/esbuild.config.mjs b/esbuild.config.mjs index a755c6c..3f94353 100644 --- a/esbuild.config.mjs +++ b/esbuild.config.mjs @@ -63,7 +63,7 @@ const context = await esbuild.context({ logLevel: 'info', sourcemap: prod ? false : 'inline', treeShaking: true, - outfile: 'main.js', + outfile: 'build/main.js', minify: prod, }); diff --git a/eslint.config.mts b/eslint.config.mts index 2c88f04..224745f 100644 --- a/eslint.config.mts +++ b/eslint.config.mts @@ -30,7 +30,7 @@ export default defineConfig( 'esbuild.config.mjs', 'version-bump.mjs', 'versions.json', - 'main.js', + 'build/**', 'package.json', 'package-lock.json', 'tsconfig.json', diff --git a/manifest.json b/manifest.json index 0b9566c..34f62d6 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "ob2qualkard", "name": "Obsidian to QualKard", - "version": "0.2.0", + "version": "0.2.1", "minAppVersion": "1.0.0", "description": "Push a note's flashcard blocks to a QualKard spaced-repetition board on Kanboard.", "author": "Ruben Carlo Benante", diff --git a/package.json b/package.json index 966bfc3..f38255a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "ob2qualkard", - "version": "0.2.0", + "version": "0.2.1", "description": "Push a note's flashcard blocks to a QualKard spaced-repetition board on Kanboard.", "author": "Ruben Carlo Benante ", "main": "main.js", diff --git a/versions.json b/versions.json index 79c5364..586b35b 100644 --- a/versions.json +++ b/versions.json @@ -1,4 +1,5 @@ { "0.1.0": "1.0.0", - "0.2.0": "1.0.0" + "0.2.0": "1.0.0", + "0.2.1": "1.0.0" }