create-nx-workspace 21.3.5 → 21.3.7

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": "create-nx-workspace",
3
- "version": "21.3.5",
3
+ "version": "21.3.7",
4
4
  "private": false,
5
5
  "description": "Smart Repos · Fast Builds",
6
6
  "repository": {
@@ -23,6 +23,10 @@ async function createEmptyWorkspace(tmpDir, name, packageManager, options) {
23
23
  options.packageManager = packageManager;
24
24
  }
25
25
  const directory = options.name;
26
+ // Cannot skip install for create-nx-workspace or else it'll fail.
27
+ // Even though --skipInstall is not an option to create-nx-workspace, we pass through extra options to presets.
28
+ // See: https://github.com/nrwl/nx/issues/31834
29
+ delete options.skipInstall;
26
30
  const args = (0, unparse_1.unparse)({
27
31
  ...options,
28
32
  }).join(' ');