@create-node-app/core 0.3.8 → 0.3.9

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
@@ -684,7 +684,12 @@ var install = (root, useYarn = false, usePnpm = false, dependencies = [], verbos
684
684
  }
685
685
  } else if (usePnpm) {
686
686
  command = "pnpm";
687
- args = ["install", "--loglevel", "error"];
687
+ args = [
688
+ "install",
689
+ "--ignore-workspace-root-check",
690
+ "--loglevel",
691
+ "error"
692
+ ];
688
693
  if (isDevDependencies) {
689
694
  args.push("--save-dev");
690
695
  } else {
package/dist/index.mjs CHANGED
@@ -655,7 +655,12 @@ var install = (root, useYarn = false, usePnpm = false, dependencies = [], verbos
655
655
  }
656
656
  } else if (usePnpm) {
657
657
  command = "pnpm";
658
- args = ["install", "--loglevel", "error"];
658
+ args = [
659
+ "install",
660
+ "--ignore-workspace-root-check",
661
+ "--loglevel",
662
+ "error"
663
+ ];
659
664
  if (isDevDependencies) {
660
665
  args.push("--save-dev");
661
666
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@create-node-app/core",
3
- "version": "0.3.8",
3
+ "version": "0.3.9",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",