Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b53d22be59 | |||
| ff0e612c43 |
5
.gitignore
vendored
5
.gitignore
vendored
@@ -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
|
||||
@@ -44,4 +44,5 @@ data.json
|
||||
|
||||
# no need
|
||||
Makefile
|
||||
GITHUB*
|
||||
|
||||
|
||||
@@ -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,
|
||||
});
|
||||
|
||||
|
||||
@@ -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',
|
||||
|
||||
@@ -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",
|
||||
|
||||
@@ -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 <rcb@beco.cc>",
|
||||
"main": "main.js",
|
||||
|
||||
@@ -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"
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user