@create-node-app/core 0.3.11 → 0.3.12

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/dist/index.js CHANGED
@@ -7541,7 +7541,7 @@ var install = async (root, useYarn = false, usePnpm = false, dependencies = [],
7541
7541
  }
7542
7542
  } else if (usePnpm) {
7543
7543
  command = "pnpm";
7544
- args = ["install", "--ignore-workspace-root-check", "--loglevel", "error"];
7544
+ args = ["install", "--ignore-workspace", "--loglevel", "error"];
7545
7545
  if (isDevDependencies) {
7546
7546
  args.push("--save-dev");
7547
7547
  } else {
package/dist/index.mjs CHANGED
@@ -7534,7 +7534,7 @@ var install = async (root, useYarn = false, usePnpm = false, dependencies = [],
7534
7534
  }
7535
7535
  } else if (usePnpm) {
7536
7536
  command = "pnpm";
7537
- args = ["install", "--ignore-workspace-root-check", "--loglevel", "error"];
7537
+ args = ["install", "--ignore-workspace", "--loglevel", "error"];
7538
7538
  if (isDevDependencies) {
7539
7539
  args.push("--save-dev");
7540
7540
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@create-node-app/core",
3
- "version": "0.3.11",
3
+ "version": "0.3.12",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",