@o3r/create 10.0.0-next.29 → 10.0.0-next.46
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/index.js +1 -1
- package/package.json +19 -19
package/index.js
CHANGED
|
@@ -101,7 +101,7 @@ const isNgNewOptions = (arg) => {
|
|
|
101
101
|
return true;
|
|
102
102
|
};
|
|
103
103
|
const createNgProject = () => {
|
|
104
|
-
const { error } = (0, node_child_process_1.spawnSync)(process.execPath, [binPath, 'new', ...args.filter(isNgNewOptions)], {
|
|
104
|
+
const { error } = (0, node_child_process_1.spawnSync)(process.execPath, [binPath, 'new', ...args.filter(isNgNewOptions), '--skip-install'], {
|
|
105
105
|
stdio: 'inherit'
|
|
106
106
|
});
|
|
107
107
|
if (error) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@o3r/create",
|
|
3
|
-
"version": "10.0.0-next.
|
|
3
|
+
"version": "10.0.0-next.46",
|
|
4
4
|
"description": "Create a new Otter based application",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"create",
|
|
@@ -15,42 +15,41 @@
|
|
|
15
15
|
"prepare:publish": "prepare-publish ./dist"
|
|
16
16
|
},
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@angular/cli": "~
|
|
19
|
-
"@schematics/angular": "~
|
|
18
|
+
"@angular/cli": "~17.0.3",
|
|
19
|
+
"@schematics/angular": "~17.0.3",
|
|
20
20
|
"minimist": "^1.2.6"
|
|
21
21
|
},
|
|
22
22
|
"devDependencies": {
|
|
23
|
-
"@angular-eslint/eslint-plugin": "~
|
|
24
|
-
"@angular-eslint/eslint-plugin-template": "~
|
|
25
|
-
"@nx/eslint
|
|
26
|
-
"@nx/
|
|
27
|
-
"@nx/
|
|
28
|
-
"@nx/
|
|
29
|
-
"@o3r/build-helpers": "^10.0.0-next.
|
|
30
|
-
"@o3r/
|
|
31
|
-
"@o3r/eslint-
|
|
32
|
-
"@o3r/eslint-plugin": "^10.0.0-next.29",
|
|
23
|
+
"@angular-eslint/eslint-plugin": "~17.1.0",
|
|
24
|
+
"@angular-eslint/eslint-plugin-template": "~17.1.0",
|
|
25
|
+
"@nx/eslint": "~17.1.1",
|
|
26
|
+
"@nx/eslint-plugin": "~17.1.1",
|
|
27
|
+
"@nx/jest": "~17.1.1",
|
|
28
|
+
"@nx/js": "~17.1.1",
|
|
29
|
+
"@o3r/build-helpers": "^10.0.0-next.46",
|
|
30
|
+
"@o3r/eslint-config-otter": "^10.0.0-next.46",
|
|
31
|
+
"@o3r/eslint-plugin": "^10.0.0-next.46",
|
|
33
32
|
"@types/jest": "~29.5.2",
|
|
34
33
|
"@types/minimist": "^1.2.2",
|
|
35
34
|
"@types/node": "^18.0.0",
|
|
36
|
-
"@typescript-eslint/eslint-plugin": "
|
|
37
|
-
"@typescript-eslint/parser": "^
|
|
35
|
+
"@typescript-eslint/eslint-plugin": "6.11.0",
|
|
36
|
+
"@typescript-eslint/parser": "^6.11.0",
|
|
38
37
|
"cpy-cli": "^4.2.0",
|
|
39
38
|
"eslint": "^8.42.0",
|
|
40
39
|
"eslint-import-resolver-node": "^0.3.4",
|
|
41
40
|
"eslint-plugin-jest": "~27.6.0",
|
|
42
|
-
"eslint-plugin-jsdoc": "~46.
|
|
41
|
+
"eslint-plugin-jsdoc": "~46.9.0",
|
|
43
42
|
"eslint-plugin-prefer-arrow": "~1.2.3",
|
|
44
43
|
"eslint-plugin-unicorn": "^47.0.0",
|
|
45
44
|
"jest": "~29.7.0",
|
|
46
45
|
"jest-junit": "~16.0.0",
|
|
47
46
|
"jsonc-eslint-parser": "~2.4.0",
|
|
48
|
-
"nx": "~
|
|
47
|
+
"nx": "~17.1.1",
|
|
49
48
|
"rimraf": "^5.0.1",
|
|
50
49
|
"rxjs": "^7.8.1",
|
|
51
50
|
"ts-jest": "~29.1.1",
|
|
52
51
|
"type-fest": "^3.12.0",
|
|
53
|
-
"typescript": "~5.
|
|
52
|
+
"typescript": "~5.2.2"
|
|
54
53
|
},
|
|
55
54
|
"engines": {
|
|
56
55
|
"node": ">=18.0.0"
|
|
@@ -118,5 +117,6 @@
|
|
|
118
117
|
],
|
|
119
118
|
"bugs": "https://github.com/AmadeusITGroup/otter/issues",
|
|
120
119
|
"repository": "https://github.com/AmadeusITGroup/otter",
|
|
121
|
-
"license": "BSD-3-Clause"
|
|
120
|
+
"license": "BSD-3-Clause",
|
|
121
|
+
"homepage": "https://amadeusitgroup.github.io/otter/"
|
|
122
122
|
}
|