init-workspace-cervvaljs 0.3.0 → 0.3.4-beta.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/CHANGELOG.md +3 -0
- package/bin/index.js +2 -2
- package/package.json +2 -2
- package/workspace/_package.json +7 -1
- package/workspace/_pnpm-workspace.yaml +3 -0
package/CHANGELOG.md
CHANGED
package/bin/index.js
CHANGED
|
@@ -101,9 +101,9 @@ function initWorkspace(options) {
|
|
|
101
101
|
}
|
|
102
102
|
}
|
|
103
103
|
else {
|
|
104
|
-
console.info("* update pnpm :
|
|
104
|
+
console.info("* update pnpm : npm add -g pnpm" + pnpmFixedVersion);
|
|
105
105
|
if (!(options === null || options === void 0 ? void 0 : options.dry)) {
|
|
106
|
-
execSyncWithIo("
|
|
106
|
+
execSyncWithIo("npm add -g pnpm" + pnpmFixedVersion);
|
|
107
107
|
}
|
|
108
108
|
}
|
|
109
109
|
console.info("* display pnpm version : pnpm -v");
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "init-workspace-cervvaljs",
|
|
3
|
-
"version": "0.3.0",
|
|
3
|
+
"version": "0.3.4-beta.0",
|
|
4
4
|
"description": "Cervval.js Init Workspace Command Line Interface",
|
|
5
5
|
"author": "Cervval",
|
|
6
6
|
"license": "CC-BY-NC-ND-4.0",
|
|
7
7
|
"bin": {
|
|
8
8
|
"init-workspace-cervvaljs": "./bin/index.js"
|
|
9
9
|
}
|
|
10
|
-
}
|
|
10
|
+
}
|
package/workspace/_package.json
CHANGED
|
@@ -12,10 +12,16 @@
|
|
|
12
12
|
"postinstall": "cwt rewrite-tsconfig-references",
|
|
13
13
|
"lint": "eslint --ext -r .ts"
|
|
14
14
|
},
|
|
15
|
+
"pnpm": {
|
|
16
|
+
"overrides": {
|
|
17
|
+
"@types/node": "=20.14.6"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
15
20
|
"devDependencies": {
|
|
16
21
|
"@cervval.js/builder": "workspace:latest",
|
|
17
22
|
"@cervval.js/eslint-config-cervvaljs": "workspace:latest",
|
|
18
23
|
"@eslint/js": "=9.35.0",
|
|
24
|
+
"@rspack/binding-linux-x64-gnu": "=1.7.0",
|
|
19
25
|
"@stylistic/eslint-plugin": "=5.3.1",
|
|
20
26
|
"@stylistic/eslint-plugin-ts": "=4.4.1",
|
|
21
27
|
"@types/chai": "=4.3.7",
|
|
@@ -32,5 +38,5 @@
|
|
|
32
38
|
"eslint-plugin-mocha": "=11.1.0",
|
|
33
39
|
"eslint-plugin-promise": "=7.2.1"
|
|
34
40
|
},
|
|
35
|
-
"version": "0.3.
|
|
41
|
+
"version": "0.3.2"
|
|
36
42
|
}
|
|
@@ -15,6 +15,9 @@ onlyBuiltDependencies:
|
|
|
15
15
|
- cwt
|
|
16
16
|
- ts-patch
|
|
17
17
|
|
|
18
|
+
overrides:
|
|
19
|
+
"@types/node": "20.14.6"
|
|
20
|
+
|
|
18
21
|
# To reduce the risk of installing compromised packages, you can delay the installation of newly published versions.
|
|
19
22
|
# Delay: duration in minutes
|
|
20
23
|
# CJS: 1 day
|