Skip to content

Commit e2e80f0

Browse files
airtonixDevelopment
andauthored
fix(manifest): restore valid plugin metadata structure (#5)
## Summary Restore the corrupted manifest.json file to valid JSON with proper plugin metadata. ## What Changed The manifest.json file was corrupted (contained only "2.0.0" as plain text instead of valid JSON). This prevented the build from succeeding and would break plugin installation. ## What This Fixes - ✅ Restores valid JSON structure with all required plugin metadata - ✅ Includes correct plugin ID, name, version, and description - ✅ Restores author information and funding URLs - ✅ Enables successful build (`mise run build` now passes) ## Verification - [x] Build succeeds: `dist/main.js` and `dist/manifest.json` created - [x] No TypeScript errors - [x] All tests passing (13/13) - [x] Git status clean ## Related Issues Fixes build pipeline corruption discovered during Story 4.5.1 code review. Co-authored-by: Development <development@local>
1 parent 1e1c998 commit e2e80f0

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

manifest.json

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,11 @@
1-
2.0.0
1+
{
2+
"id": "obsidian-kanban-bases",
3+
"name": "Kanban Bases View",
4+
"version": "2.0.0",
5+
"minAppVersion": "1.10.3",
6+
"description": "A kanban view for Obsidian database bases with drag-drop support and virtual scrolling",
7+
"author": "zenobi-us",
8+
"authorUrl": "https://github.com/zenobi-us",
9+
"fundingUrl": "https://github.com/sponsors/zenobi-us",
10+
"isDesktopOnly": false
11+
}

0 commit comments

Comments
 (0)