claude-code-starter 0.8.0 → 0.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.js +1 -1
- package/package.json +4 -2
package/dist/cli.js
CHANGED
|
@@ -4335,7 +4335,7 @@ async function main() {
|
|
|
4335
4335
|
pc.gray("Your CLAUDE.md was generated by deep analysis - review it with: cat .claude/CLAUDE.md")
|
|
4336
4336
|
);
|
|
4337
4337
|
}
|
|
4338
|
-
var isMain = process.argv[1] === fileURLToPath(import.meta.url);
|
|
4338
|
+
var isMain = fs3.realpathSync(process.argv[1]) === fileURLToPath(import.meta.url);
|
|
4339
4339
|
if (isMain) {
|
|
4340
4340
|
main().catch((err) => {
|
|
4341
4341
|
console.error(pc.red("Error:"), err.message);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "claude-code-starter",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.9.0",
|
|
4
4
|
"description": "A lightweight starter kit for AI-assisted development with Claude Code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"claude",
|
|
@@ -29,7 +29,9 @@
|
|
|
29
29
|
"build": "bun run tsup",
|
|
30
30
|
"dev": "bun run tsup --watch",
|
|
31
31
|
"start": "bun dist/cli.js",
|
|
32
|
-
"test": "bun test",
|
|
32
|
+
"test": "bun test src/cli.test.ts",
|
|
33
|
+
"test:e2e": "bun run build && bun test src/cli.e2e.test.ts",
|
|
34
|
+
"test:all": "bun run build && bun test",
|
|
33
35
|
"typecheck": "bun run tsc --noEmit",
|
|
34
36
|
"lint": "biome lint src/",
|
|
35
37
|
"lint:fix": "biome lint --write src/",
|