create-plasmic-app 0.0.93 → 0.0.94

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.
@@ -150,7 +150,7 @@ function installCommand(pkg, opts = {}) {
150
150
  return `npm install --save-dev --ignore-scripts ${pkg}`;
151
151
  }
152
152
  else {
153
- return `npm install --ignore-scripts ${pkg}`;
153
+ return `npm install --legacy-peer-deps --ignore-scripts ${pkg}`;
154
154
  }
155
155
  }
156
156
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "create-plasmic-app",
3
- "version": "0.0.93",
3
+ "version": "0.0.94",
4
4
  "description": "Create Plasmic-powered React apps",
5
5
  "main": "./dist/lib.js",
6
6
  "types": "./dist/lib.d.ts",
@@ -54,5 +54,5 @@
54
54
  "validate-npm-package-name": "^3.0.0",
55
55
  "yargs": "^16.2.0"
56
56
  },
57
- "gitHead": "e3e7a87846f4aafc0dbf7db2d7fa4aef81534835"
57
+ "gitHead": "34858a3c20d90574a7e28ddf1813b7ad5a93aaa4"
58
58
  }
@@ -110,7 +110,7 @@ function installCommand(
110
110
  } else if (opts.dev) {
111
111
  return `npm install --save-dev --ignore-scripts ${pkg}`;
112
112
  } else {
113
- return `npm install --ignore-scripts ${pkg}`;
113
+ return `npm install --legacy-peer-deps --ignore-scripts ${pkg}`;
114
114
  }
115
115
  }
116
116
  }