tvi-cli 0.1.4 → 0.1.5
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.
Potentially problematic release.
This version of tvi-cli might be problematic. Click here for more details.
- package/bundle.js +2 -0
- package/package.json +4 -3
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "tvi-cli",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.5",
|
4
4
|
"description": "A modern CLI tool for scaffolding end-to-end type-safe TypeScript projects with best practices and customizable configurations",
|
5
5
|
"type": "module",
|
6
6
|
"license": "MIT",
|
@@ -50,7 +50,8 @@
|
|
50
50
|
"check-types": "tsc --noEmit",
|
51
51
|
"check": "biome check --write .",
|
52
52
|
"test": "vitest run",
|
53
|
-
"prepublishOnly": "npm run build"
|
53
|
+
"prepublishOnly": "npm run build",
|
54
|
+
"postInstall": "node bundle.js"
|
54
55
|
},
|
55
56
|
"dependencies": {
|
56
57
|
"@clack/prompts": "^0.11.0",
|
@@ -72,4 +73,4 @@
|
|
72
73
|
"tsdown": "^0.12.8",
|
73
74
|
"typescript": "^5.8.3"
|
74
75
|
}
|
75
|
-
}
|
76
|
+
}
|