This commit is contained in:
wood chen 2025-01-23 23:40:45 +08:00
parent 0a685b2463
commit edc6b47c12
4 changed files with 12 additions and 8 deletions

View File

@ -1,11 +1,11 @@
{ {
"id": "publish-to-discourse", "id": "publish-to-discourse",
"name": "Publish to Discourse", "name": "Publish to Discourse",
"version": "1.0.2", "version": "1.0.1",
"minAppVersion": "0.15.0", "minAppVersion": "0.15.0",
"description": "Publish notes to the Discourse forum.", "description": "Publish notes to the Discourse forum.",
"author": "WoodChen", "author": "WoodChen",
"authorUrl": "https://woodchen.ink", "authorUrl": "https://woodchen.ink",
"fundingUrl": "https://buymeacoffee.com/woodchen", "fundingUrl": "https://buymeacoffee.com/woodchen",
"isDesktopOnly": true "isDesktopOnly": true
} }

4
package-lock.json generated
View File

@ -1,12 +1,12 @@
{ {
"name": "obsidian-sample-plugin", "name": "obsidian-sample-plugin",
"version": "1.0.0", "version": "1.0.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "obsidian-sample-plugin", "name": "obsidian-sample-plugin",
"version": "1.0.0", "version": "1.0.1",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@types/node": "^16.11.6", "@types/node": "^16.11.6",

View File

@ -1,6 +1,6 @@
{ {
"name": "obsidian-publish-to-discourse", "name": "obsidian-publish-to-discourse",
"version": "1.0.0", "version": "1.0.1",
"description": "Post notes to the Discourse forum.", "description": "Post notes to the Discourse forum.",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
@ -8,7 +8,11 @@
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production", "build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"version": "node version-bump.mjs && git add manifest.json versions.json" "version": "node version-bump.mjs && git add manifest.json versions.json"
}, },
"keywords": ["discourse", "publish", "post"], "keywords": [
"discourse",
"publish",
"post"
],
"author": "woodchen", "author": "woodchen",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {

View File

@ -1,5 +1,5 @@
{ {
"1.0.0": "1.0.0", "1.0.0": "1.0.0",
"1.0.1": "1.0.1", "1.0.1": "0.15.0",
"1.0.2": "1.0.2" "1.0.2": "1.0.2"
} }