mirror of
https://github.com/amato21/Lightweight-Mentions.git
synced 2026-07-22 08:33:37 +00:00
Root cause: manifest.json/package.json/versions.json got bumped to 0.3.0 for the template-folder feature while the user's actual published/submitted GitHub release was still 0.2.1, which broke the Obsidian plugin review's "manifest version has a matching release" check and forced an unplanned release. Fix: reconcile package.json/versions.json to match the user's manual manifest.json fix (0.2.2, one patch past the real 0.2.1 release), and add a rule to CLAUDE.md: never bump the version on a regular PR -- only when the user explicitly says they're preparing a release. Verification: npm run build and npm test both clean. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_018KJkrwy6CLrUh8VkbgvwEt
21 lines
567 B
JSON
21 lines
567 B
JSON
{
|
|
"name": "lightweight-mentions",
|
|
"version": "0.2.2",
|
|
"description": "Obsidian plugin: lightweight @-mentions that link to a shared stub file, promotable to full notes.",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "node tests/ranking.test.mjs"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^20.11.0",
|
|
"esbuild": "^0.19.11",
|
|
"obsidian": "^1.5.7",
|
|
"tslib": "2.6.2",
|
|
"typescript": "^5.3.3"
|
|
}
|
|
}
|