@o3r/create 9.5.0-alpha.3 → 9.5.0-alpha.30

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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +8 -7
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": "9.5.0-alpha.3",
3
+ "version": "9.5.0-alpha.30",
4
4
  "description": "Create a new Otter based application",
5
5
  "keywords": [
6
6
  "create",
@@ -26,10 +26,10 @@
26
26
  "@nx/jest": "~16.10.0",
27
27
  "@nx/js": "~16.10.0",
28
28
  "@nx/linter": "~16.10.0",
29
- "@o3r/build-helpers": "^9.5.0-alpha.3",
30
- "@o3r/dev-tools": "^9.5.0-alpha.3",
31
- "@o3r/eslint-config-otter": "^9.5.0-alpha.3",
32
- "@o3r/eslint-plugin": "^9.5.0-alpha.3",
29
+ "@o3r/build-helpers": "^9.5.0-alpha.30",
30
+ "@o3r/dev-tools": "^9.5.0-alpha.30",
31
+ "@o3r/eslint-config-otter": "^9.5.0-alpha.30",
32
+ "@o3r/eslint-plugin": "^9.5.0-alpha.30",
33
33
  "@types/jest": "~29.5.2",
34
34
  "@types/minimist": "^1.2.2",
35
35
  "@types/node": "^18.0.0",
@@ -39,7 +39,7 @@
39
39
  "eslint": "^8.42.0",
40
40
  "eslint-import-resolver-node": "^0.3.4",
41
41
  "eslint-plugin-jest": "~27.6.0",
42
- "eslint-plugin-jsdoc": "~46.8.0",
42
+ "eslint-plugin-jsdoc": "~46.9.0",
43
43
  "eslint-plugin-prefer-arrow": "~1.2.3",
44
44
  "eslint-plugin-unicorn": "^47.0.0",
45
45
  "jest": "~29.7.0",
@@ -118,5 +118,6 @@
118
118
  ],
119
119
  "bugs": "https://github.com/AmadeusITGroup/otter/issues",
120
120
  "repository": "https://github.com/AmadeusITGroup/otter",
121
- "license": "BSD-3-Clause"
121
+ "license": "BSD-3-Clause",
122
+ "homepage": "https://amadeusitgroup.github.io/otter/"
122
123
  }