2 Commits
v0.2 ... master

Author SHA1 Message Date
b53d22be59 release 0.2.1
Some checks failed
ob2qualkard CI / build (20.x) (push) Has been cancelled
ob2qualkard CI / build (22.x) (push) Has been cancelled
ob2qualkard CI / build (24.x) (push) Has been cancelled
Release ob2qualkard / build (push) Has been cancelled
2026-08-05 21:50:16 -03:00
ff0e612c43 mirror to github
Some checks failed
ob2qualkard CI / build (20.x) (push) Has been cancelled
ob2qualkard CI / build (22.x) (push) Has been cancelled
ob2qualkard CI / build (24.x) (push) Has been cancelled
2026-08-05 21:16:36 -03:00
7 changed files with 10 additions and 8 deletions

5
.gitignore vendored
View File

@@ -29,8 +29,8 @@
# npm # npm
node_modules node_modules
# Don't include the compiled main.js file in the repo. # Build output (main.js builds into build/; ignore both). Ships via releases.
# They should be uploaded to GitHub releases instead. build/
main.js main.js
# Exclude sourcemaps # Exclude sourcemaps
@@ -44,4 +44,5 @@ data.json
# no need # no need
Makefile Makefile
GITHUB*

View File

@@ -1 +1 @@
ob2qualkard v0.2 ob2qualkard 0.2.1

View File

@@ -63,7 +63,7 @@ const context = await esbuild.context({
logLevel: 'info', logLevel: 'info',
sourcemap: prod ? false : 'inline', sourcemap: prod ? false : 'inline',
treeShaking: true, treeShaking: true,
outfile: 'main.js', outfile: 'build/main.js',
minify: prod, minify: prod,
}); });

View File

@@ -30,7 +30,7 @@ export default defineConfig(
'esbuild.config.mjs', 'esbuild.config.mjs',
'version-bump.mjs', 'version-bump.mjs',
'versions.json', 'versions.json',
'main.js', 'build/**',
'package.json', 'package.json',
'package-lock.json', 'package-lock.json',
'tsconfig.json', 'tsconfig.json',

View File

@@ -1,7 +1,7 @@
{ {
"id": "ob2qualkard", "id": "ob2qualkard",
"name": "Obsidian to QualKard", "name": "Obsidian to QualKard",
"version": "0.2.0", "version": "0.2.1",
"minAppVersion": "1.0.0", "minAppVersion": "1.0.0",
"description": "Push a note's flashcard blocks to a QualKard spaced-repetition board on Kanboard.", "description": "Push a note's flashcard blocks to a QualKard spaced-repetition board on Kanboard.",
"author": "Ruben Carlo Benante", "author": "Ruben Carlo Benante",

View File

@@ -1,6 +1,6 @@
{ {
"name": "ob2qualkard", "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.", "description": "Push a note's flashcard blocks to a QualKard spaced-repetition board on Kanboard.",
"author": "Ruben Carlo Benante <rcb@beco.cc>", "author": "Ruben Carlo Benante <rcb@beco.cc>",
"main": "main.js", "main": "main.js",

View File

@@ -1,4 +1,5 @@
{ {
"0.1.0": "1.0.0", "0.1.0": "1.0.0",
"0.2.0": "1.0.0" "0.2.0": "1.0.0",
"0.2.1": "1.0.0"
} }