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.
- package/package.json +1 -1
- package/src/init.ts +5 -5
package/package.json
CHANGED
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
|
-
|
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
|
}
|