mirror of
https://github.com/kwhittle/obsidian-github-tools.git
synced 2026-07-22 07:44:31 +00:00
Branch switch and pull now try the git operation directly first and only fall back to auto-stash when local changes actually block it, fixing switches that silently failed after a pull left an unresolved conflict. The sidebar also now surfaces unresolved conflicts and stashes for the repo, with one-click resolve/abort/apply/drop actions. Also wires RELEASE_NOTES.md into the release workflow so Obsidian's plugin update view shows a short human summary instead of just a changelog compare link. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
20 lines
500 B
JSON
20 lines
500 B
JSON
{
|
|
"name": "obsidian-github-tools",
|
|
"version": "1.0.8",
|
|
"description": "GitHub wiki repo monitor for Obsidian",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production"
|
|
},
|
|
"keywords": [],
|
|
"author": "Kyle Whittle",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"@types/node": "^16.11.6",
|
|
"esbuild": "0.17.3",
|
|
"obsidian": "latest",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|