@create-node-app/core 0.2.2 → 0.2.4

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
@@ -620,7 +620,7 @@ var install = (root, useYarn = false, dependencies = [], verbose = false, isOnli
620
620
  let args;
621
621
  if (useYarn) {
622
622
  command = "yarnpkg";
623
- args = ["add"];
623
+ args = ["add", "--ignore-workspace-root-check"];
624
624
  if (!isOnline) {
625
625
  args.push("--offline");
626
626
  }
package/dist/index.mjs CHANGED
@@ -592,7 +592,7 @@ var install = (root, useYarn = false, dependencies = [], verbose = false, isOnli
592
592
  let args;
593
593
  if (useYarn) {
594
594
  command = "yarnpkg";
595
- args = ["add"];
595
+ args = ["add", "--ignore-workspace-root-check"];
596
596
  if (!isOnline) {
597
597
  args.push("--offline");
598
598
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@create-node-app/core",
3
- "version": "0.2.2",
3
+ "version": "0.2.4",
4
4
  "main": "./dist/index.js",
5
5
  "module": "./dist/index.js",
6
6
  "types": "./dist/index.d.ts",