scaffoldrite 2.0.6 → 2.0.7
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/package.json +5 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "scaffoldrite",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.7",
|
|
4
4
|
"description": "A project structure validator and generator CLI tool.",
|
|
5
5
|
"author": "Isaac Anasonye",
|
|
6
6
|
"license": "MIT",
|
|
@@ -36,13 +36,14 @@
|
|
|
36
36
|
"start": "node dist/cli.js",
|
|
37
37
|
"type-check": "tsc --noEmit",
|
|
38
38
|
"validate": "npm run type-check && npm run build",
|
|
39
|
-
"test": "jest"
|
|
39
|
+
"test": "jest",
|
|
40
|
+
"prepublishOnly": "npm run build && node dist/cli.js --help npm pack --dry-run",
|
|
41
|
+
"release:test": "npm run build && node -e \"const { execSync } = require('child_process'); const name=require('./package.json').name; const version=require('./package.json').version; const file=`${name}-${version}.tgz`; execSync('npm pack', { stdio: 'inherit' }); execSync(`npm install -g ${file}`, { stdio: 'inherit' }); execSync('sr --help', { stdio: 'inherit' }); execSync('npm uninstall -g scaffoldrite', { stdio: 'inherit' });\""
|
|
40
42
|
},
|
|
41
43
|
"devDependencies": {
|
|
42
44
|
"@types/cli-progress": "^3.11.6",
|
|
43
45
|
"@types/jest": "^30.0.0",
|
|
44
46
|
"@types/node": "^25.0.9",
|
|
45
|
-
"cli-progress": "^3.12.0",
|
|
46
47
|
"jest": "^30.2.0",
|
|
47
48
|
"ts-jest": "^29.4.6",
|
|
48
49
|
"tsx": "^4.21.0",
|
|
@@ -53,6 +54,7 @@
|
|
|
53
54
|
"node": ">=17"
|
|
54
55
|
},
|
|
55
56
|
"dependencies": {
|
|
57
|
+
"cli-progress": "^3.12.0",
|
|
56
58
|
"chalk": "^5.6.2",
|
|
57
59
|
"depcheck": "^1.4.7",
|
|
58
60
|
"dotenv": "^17.2.3",
|