Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| b53d22be59 | |||
| ff0e612c43 |
5
.gitignore
vendored
5
.gitignore
vendored
@@ -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*
|
||||||
|
|
||||||
|
|||||||
@@ -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,
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|||||||
@@ -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',
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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",
|
||||||
|
|||||||
@@ -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"
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user