mirror of
https://github.com/kwhittle/obsidian-github-tools.git
synced 2026-07-22 07:44:31 +00:00
stdout.trim() was stripping the leading space from the first line of git status --porcelain output, causing substring(3) to index one char into the filename. Switch to trimEnd() to only strip trailing newlines. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
20 lines
500 B
JSON
20 lines
500 B
JSON
{
|
|
"name": "obsidian-github-tools",
|
|
"version": "1.0.2",
|
|
"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"
|
|
}
|
|
}
|