lucy-cli 2.0.0-alpha.10 → 2.0.0-alpha.11

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/init.ts +5 -5
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "lucy-cli",
4
- "version": "2.0.0-alpha.10",
4
+ "version": "2.0.0-alpha.11",
5
5
  "description": "Lucy Framework for WIX Studio Editor",
6
6
  "main": ".dist/index.js",
7
7
  "scripts": {
package/src/init.ts CHANGED
@@ -358,11 +358,11 @@ const init_expo = () => {
358
358
  yield* fs.remove(path.join(config.config.cwd, "package-lock.json"), { force: true })
359
359
 
360
360
 
361
- let res = yield* yarnVersion;
362
- if (res !== 0) {
363
- return yield* Effect.logError("Failed to set Yarn version. Please check the error message above.");
364
- }
365
- res = yield* yarn
361
+ // let res = yield* yarnVersion;
362
+ // if (res !== 0) {
363
+ // return yield* Effect.logError("Failed to set Yarn version. Please check the error message above.");
364
+ // }
365
+ let res = yield* yarn
366
366
  if (res !== 0) {
367
367
  return yield* Effect.logError("Failed to install dependencies. Please check the error message above.");
368
368
  }