Update package metadata and GitHub Actions workflow: changed description to English, added keywords, specified author, and modified release job to exclude styles.css.

This commit is contained in:
wood chen 2024-12-21 14:13:21 +08:00
parent 66c72d64be
commit e5f1a22cb5
2 changed files with 4 additions and 4 deletions

View File

@ -31,4 +31,4 @@ jobs:
gh release create "$tag" \ gh release create "$tag" \
--title="$tag" \ --title="$tag" \
--draft \ --draft \
main.js manifest.json styles.css main.js manifest.json

View File

@ -1,15 +1,15 @@
{ {
"name": "obsidian-publish-to-discourse", "name": "obsidian-publish-to-discourse",
"version": "1.0.0", "version": "1.0.0",
"description": "发布笔记到 Discourse 论坛。", "description": "Post notes to the Discourse forum.",
"main": "main.js", "main": "main.js",
"scripts": { "scripts": {
"dev": "node esbuild.config.mjs", "dev": "node esbuild.config.mjs",
"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": [], "keywords": ["discourse", "publish", "post"],
"author": "", "author": "woodchen",
"license": "MIT", "license": "MIT",
"devDependencies": { "devDependencies": {
"@types/node": "^16.11.6", "@types/node": "^16.11.6",