create-windowless-app 9.1.2 → 9.2.1
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/README.md +1 -2
- package/dist/cliParser.js +10 -61
- package/dist/interactive.js +54 -0
- package/dist/validation.js +18 -0
- package/npm-shrinkwrap.json +5523 -316
- package/package.json +17 -16
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-windowless-app",
|
|
3
|
-
"version": "9.1
|
|
3
|
+
"version": "9.2.1",
|
|
4
4
|
"description": "Create a windowless NodeJS app",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -8,11 +8,12 @@
|
|
|
8
8
|
"create-windowless-app": "./dist/index.js"
|
|
9
9
|
},
|
|
10
10
|
"scripts": {
|
|
11
|
-
"prepare": "
|
|
11
|
+
"prepare": "npm run husky-install && npx fix-lockfile-integrity",
|
|
12
|
+
"husky-install": "git config --get core.hookspath || husky install",
|
|
12
13
|
"prebuild": "npm run test",
|
|
13
14
|
"build": "npm run build:no-test",
|
|
14
15
|
"build:no-test": "npm run tsc && npm run add-shebang && npm run package",
|
|
15
|
-
"build:no-test:ci": "npm run tsc && npm run add-shebang &&
|
|
16
|
+
"build:no-test:ci": "npm run tsc && npm run add-shebang && del package-lock.json && npm prune --omit=dev && npm shrinkwrap && npm run package",
|
|
16
17
|
"test": "npm run eslint && npm run type-check && npm run jest",
|
|
17
18
|
"eslint": "eslint src/ test/ templates/",
|
|
18
19
|
"eslint:fix": "npm run eslint -- --fix",
|
|
@@ -58,29 +59,29 @@
|
|
|
58
59
|
"@tsconfig/node14": "1.0.3",
|
|
59
60
|
"@types/cross-spawn": "6.0.2",
|
|
60
61
|
"@types/fs-extra": "9.0.13",
|
|
61
|
-
"@types/inquirer": "8.2.
|
|
62
|
-
"@types/jest": "
|
|
62
|
+
"@types/inquirer": "8.2.4",
|
|
63
|
+
"@types/jest": "29.1.2",
|
|
63
64
|
"@types/mock-fs": "4.13.1",
|
|
64
|
-
"@types/node": "18.
|
|
65
|
+
"@types/node": "18.7.20",
|
|
65
66
|
"@types/node-notifier": "8.0.2",
|
|
66
67
|
"@types/semver": "7.3.12",
|
|
67
68
|
"@types/semver-compare": "1.0.1",
|
|
68
69
|
"@types/validate-npm-package-name": "4.0.0",
|
|
69
70
|
"@types/winston": "2.4.4",
|
|
70
|
-
"@typescript-eslint/eslint-plugin": "5.
|
|
71
|
-
"@typescript-eslint/parser": "5.
|
|
71
|
+
"@typescript-eslint/eslint-plugin": "5.39.0",
|
|
72
|
+
"@typescript-eslint/parser": "5.39.0",
|
|
72
73
|
"add-shebang": "0.1.0",
|
|
73
74
|
"copy-webpack-plugin": "11.0.0",
|
|
74
75
|
"cross-env": "7.0.3",
|
|
75
76
|
"del": "6.1.1",
|
|
76
|
-
"eslint": "8.
|
|
77
|
+
"eslint": "8.25.0",
|
|
77
78
|
"eslint-plugin-import": "2.26.0",
|
|
78
|
-
"eslint-plugin-jest": "27.
|
|
79
|
+
"eslint-plugin-jest": "27.1.1",
|
|
79
80
|
"eslint-plugin-node": "11.1.0",
|
|
80
81
|
"eslint-plugin-security": "1.5.0",
|
|
81
82
|
"global-npm": "0.5.0",
|
|
82
83
|
"husky": "8.0.1",
|
|
83
|
-
"jest": "
|
|
84
|
+
"jest": "29.1.2",
|
|
84
85
|
"lint-staged": "13.0.3",
|
|
85
86
|
"mock-fs": "5.1.4",
|
|
86
87
|
"mocked-env": "1.3.5",
|
|
@@ -88,11 +89,11 @@
|
|
|
88
89
|
"prettier": "2.7.1",
|
|
89
90
|
"rimraf": "3.0.2",
|
|
90
91
|
"tmp-promise": "3.0.3",
|
|
91
|
-
"ts-jest": "
|
|
92
|
+
"ts-jest": "29.0.3",
|
|
92
93
|
"ts-node": "10.9.1",
|
|
93
|
-
"typescript": "4.8.
|
|
94
|
+
"typescript": "4.8.4",
|
|
94
95
|
"webpack": "5.74.0",
|
|
95
|
-
"winston": "3.8.
|
|
96
|
+
"winston": "3.8.2"
|
|
96
97
|
},
|
|
97
98
|
"dependencies": {
|
|
98
99
|
"chalk": "4.1.2",
|
|
@@ -100,10 +101,10 @@
|
|
|
100
101
|
"fs-extra": "10.1.0",
|
|
101
102
|
"got": "11.8.5",
|
|
102
103
|
"inquirer": "8.2.4",
|
|
103
|
-
"semver": "7.3.
|
|
104
|
+
"semver": "7.3.8",
|
|
104
105
|
"semver-compare": "1.0.0",
|
|
105
106
|
"validate-npm-package-name": "4.0.0",
|
|
106
|
-
"yargs": "17.
|
|
107
|
+
"yargs": "17.6.0"
|
|
107
108
|
},
|
|
108
109
|
"lint-staged": {
|
|
109
110
|
"*.(ts|js)": [
|