@o3r/workspace 12.3.0-prerelease.36 → 12.3.0-prerelease.37
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
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@o3r/workspace",
|
|
3
|
-
"version": "12.3.0-prerelease.
|
|
3
|
+
"version": "12.3.0-prerelease.37",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"@angular/common": "^19.0.0",
|
|
42
42
|
"@angular/compiler-cli": "^19.0.0",
|
|
43
43
|
"@angular/core": "^19.0.0",
|
|
44
|
-
"@o3r/telemetry": "^12.3.0-prerelease.
|
|
44
|
+
"@o3r/telemetry": "^12.3.0-prerelease.37",
|
|
45
45
|
"@schematics/angular": "^19.0.0",
|
|
46
46
|
"ts-node": "~10.9.2",
|
|
47
47
|
"type-fest": "^4.10.2",
|
|
@@ -59,7 +59,7 @@
|
|
|
59
59
|
}
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@o3r/schematics": "^12.3.0-prerelease.
|
|
62
|
+
"@o3r/schematics": "^12.3.0-prerelease.37",
|
|
63
63
|
"commander": "^13.0.0",
|
|
64
64
|
"globby": "^11.1.0",
|
|
65
65
|
"semver": "^7.5.2",
|
|
@@ -92,12 +92,12 @@
|
|
|
92
92
|
"@nx/jest": "~20.7.0",
|
|
93
93
|
"@nx/js": "~20.7.0",
|
|
94
94
|
"@nx/workspace": "~20.7.0",
|
|
95
|
-
"@o3r/build-helpers": "^12.3.0-prerelease.
|
|
96
|
-
"@o3r/core": "^12.3.0-prerelease.
|
|
97
|
-
"@o3r/eslint-plugin": "^12.3.0-prerelease.
|
|
98
|
-
"@o3r/schematics": "^12.3.0-prerelease.
|
|
99
|
-
"@o3r/telemetry": "^12.3.0-prerelease.
|
|
100
|
-
"@o3r/test-helpers": "^12.3.0-prerelease.
|
|
95
|
+
"@o3r/build-helpers": "^12.3.0-prerelease.37",
|
|
96
|
+
"@o3r/core": "^12.3.0-prerelease.37",
|
|
97
|
+
"@o3r/eslint-plugin": "^12.3.0-prerelease.37",
|
|
98
|
+
"@o3r/schematics": "^12.3.0-prerelease.37",
|
|
99
|
+
"@o3r/telemetry": "^12.3.0-prerelease.37",
|
|
100
|
+
"@o3r/test-helpers": "^12.3.0-prerelease.37",
|
|
101
101
|
"@schematics/angular": "~19.2.0",
|
|
102
102
|
"@stylistic/eslint-plugin": "~3.1.0",
|
|
103
103
|
"@types/jest": "~29.5.2",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clean-standalone.rule.d.ts","sourceRoot":"","sources":["../../../../schematics/sdk/rules/clean-standalone.rule.ts"],"names":[],"mappings":"AAGA,OAAO,EAEL,KAAK,IAAI,EACV,MAAM,4BAA4B,CAAC;AAepC;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,
|
|
1
|
+
{"version":3,"file":"clean-standalone.rule.d.ts","sourceRoot":"","sources":["../../../../schematics/sdk/rules/clean-standalone.rule.ts"],"names":[],"mappings":"AAGA,OAAO,EAEL,KAAK,IAAI,EACV,MAAM,4BAA4B,CAAC;AAepC;;;GAGG;AACH,wBAAgB,oBAAoB,CAAC,UAAU,EAAE,MAAM,GAAG,IAAI,CAgC7D"}
|
|
@@ -30,12 +30,13 @@ function cleanStandaloneFiles(targetPath) {
|
|
|
30
30
|
(tree) => {
|
|
31
31
|
const packageJson = tree.readJson(node_path_1.posix.join(targetPath, 'package.json'));
|
|
32
32
|
if (packageJson.scripts) {
|
|
33
|
-
const excludedScripts = ['postinstall', 'set:version', 'tools:changelog'];
|
|
33
|
+
const excludedScripts = ['postinstall', 'set:version', 'tools:changelog', 'start'];
|
|
34
34
|
packageJson.scripts = Object.fromEntries(Object.entries(packageJson.scripts).filter(([scriptName]) => !excludedScripts.includes(scriptName)));
|
|
35
35
|
}
|
|
36
36
|
delete packageJson['lint-staged'];
|
|
37
37
|
if (packageJson.devDependencies) {
|
|
38
|
-
|
|
38
|
+
const dependenciesToRemove = ['@o3r/workspace', 'tsc-watch'];
|
|
39
|
+
packageJson.devDependencies = Object.fromEntries(Object.entries(packageJson.devDependencies).filter(([depName]) => !dependenciesToRemove.includes(depName)));
|
|
39
40
|
}
|
|
40
41
|
tree.overwrite(node_path_1.posix.join(targetPath, 'package.json'), JSON.stringify(packageJson, null, 2));
|
|
41
42
|
return tree;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"clean-standalone.rule.js","sourceRoot":"","sources":["../../../../schematics/sdk/rules/clean-standalone.rule.ts"],"names":[],"mappings":";;AAyBA,
|
|
1
|
+
{"version":3,"file":"clean-standalone.rule.js","sourceRoot":"","sources":["../../../../schematics/sdk/rules/clean-standalone.rule.ts"],"names":[],"mappings":";;AAyBA,oDAgCC;AAzDD,yCAEmB;AACnB,2DAGoC;AAKpC,MAAM,cAAc,GAAG,CAAC,KAAe,EAAQ,EAAE,CAAC,CAAC,IAAI,EAAE,OAAO,EAAE,EAAE;IAClE,KAAK,CAAC,OAAO,CAAC,CAAC,IAAI,EAAE,EAAE;QACrB,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,CAAC;YACtB,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QACpB,CAAC;aAAM,CAAC;YACN,OAAO,CAAC,MAAM,CAAC,IAAI,CAAC,mBAAmB,IAAI,2BAA2B,CAAC,CAAC;QAC1E,CAAC;IACH,CAAC,CAAC,CAAC;AACL,CAAC,CAAC;AAEF;;;GAGG;AACH,SAAgB,oBAAoB,CAAC,UAAkB;IACrD,OAAO,IAAA,kBAAK,EAAC;QACX,cAAc,CACZ;YACE,iBAAK,CAAC,IAAI,CAAC,UAAU,EAAE,kBAAkB,CAAC;YAC1C,iBAAK,CAAC,IAAI,CAAC,UAAU,EAAE,SAAS,EAAE,eAAe,CAAC;YAClD,iBAAK,CAAC,IAAI,CAAC,UAAU,EAAE,eAAe,CAAC;YACvC,iBAAK,CAAC,IAAI,CAAC,UAAU,EAAE,iBAAiB,CAAC;YACzC,iBAAK,CAAC,IAAI,CAAC,UAAU,EAAE,oBAAoB,CAAC;YAC5C,iBAAK,CAAC,IAAI,CAAC,UAAU,EAAE,iBAAiB,CAAC;SAC1C,CACF;QACD,CAAC,IAAI,EAAE,EAAE;YACP,MAAM,WAAW,GAAG,IAAI,CAAC,QAAQ,CAAC,iBAAK,CAAC,IAAI,CAAC,UAAU,EAAE,cAAc,CAAC,CAAgB,CAAC;YACzF,IAAI,WAAW,CAAC,OAAO,EAAE,CAAC;gBACxB,MAAM,eAAe,GAAG,CAAC,aAAa,EAAE,aAAa,EAAE,iBAAiB,EAAE,OAAO,CAAC,CAAC;gBACnF,WAAW,CAAC,OAAO,GAAG,MAAM,CAAC,WAAW,CACtC,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,UAAU,CAAC,EAAE,EAAE,CAAC,CAAC,eAAe,CAAC,QAAQ,CAAC,UAAU,CAAC,CAAC,CACpG,CAAC;YACJ,CAAC;YACD,OAAO,WAAW,CAAC,aAAa,CAAC,CAAC;YAClC,IAAI,WAAW,CAAC,eAAe,EAAE,CAAC;gBAChC,MAAM,oBAAoB,GAAG,CAAC,gBAAgB,EAAE,WAAW,CAAC,CAAC;gBAC7D,WAAW,CAAC,eAAe,GAAG,MAAM,CAAC,WAAW,CAC9C,MAAM,CAAC,OAAO,CAAC,WAAW,CAAC,eAAe,CAAC,CAAC,MAAM,CAAC,CAAC,CAAC,OAAO,CAAC,EAAE,EAAE,CAAC,CAAC,oBAAoB,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAC3G,CAAC;YACJ,CAAC;YAED,IAAI,CAAC,SAAS,CAAC,iBAAK,CAAC,IAAI,CAAC,UAAU,EAAE,cAAc,CAAC,EAAE,IAAI,CAAC,SAAS,CAAC,WAAW,EAAE,IAAI,EAAE,CAAC,CAAC,CAAC,CAAC;YAC7F,OAAO,IAAI,CAAC;QACd,CAAC;KACF,CAAC,CAAC;AACL,CAAC"}
|