lucy-cli 2.0.0-alpha.1 → 2.0.0-alpha.2
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/init.js +1 -1
- package/package.json +1 -1
- package/src/init.ts +2 -1
package/dist/init.js
CHANGED
@@ -166,7 +166,7 @@ const init_expo = () => {
|
|
166
166
|
const terminal = yield* Terminal.Terminal;
|
167
167
|
const fs = yield* FileSystem.FileSystem;
|
168
168
|
const path = yield* Path.Path;
|
169
|
-
const yarn = Command.make("yarn", "add", "nativewind", "react-native-reanimated@~3.17.4", "react-native-safe-area-context@5.4.0", "@wix/sdk", "@wix/data", "expo-standard-web-crypto").pipe(Command.stdout("inherit"), // Stream stdout to process.stdout
|
169
|
+
const yarn = Command.make("yarn", "add", "nativewind", "react-native-reanimated@~3.17.4", "react-native-safe-area-context@5.4.0", "@wix/sdk", "@wix/data", "expo-standard-web-crypto", "effect").pipe(Command.stdout("inherit"), // Stream stdout to process.stdout
|
170
170
|
Command.exitCode // Get the exit code
|
171
171
|
);
|
172
172
|
const yarnDev = Command.make("yarn", "add", "--dev", "tailwindcss@^3.4.17", "prettier-plugin-tailwindcss@^0.5.11", "@styled/typescript-styled-plugin", "typescript-eslint-language-service", "eslint-config-prettier", "eslint-plugin-jsdoc", "eslint-plugin-named-import-spacing", "eslint-plugin-only-warn", "eslint-plugin-react", "eslint-plugin-react-hooks", "eslint-plugin-simple-import-sort", "@next/eslint-plugin-next", "@styled/typescript-styled-plugin", "@stylelint/postcss-css-in-js", "@typescript-eslint/parser", "typescript-eslint", "typescript-eslint-language-service", "@total-typescript/ts-reset").pipe(Command.stdout("inherit"), // Stream stdout to process.stdout
|
package/package.json
CHANGED
package/src/init.ts
CHANGED
@@ -207,7 +207,8 @@ const init_expo = () => {
|
|
207
207
|
"react-native-safe-area-context@5.4.0",
|
208
208
|
"@wix/sdk",
|
209
209
|
"@wix/data",
|
210
|
-
"expo-standard-web-crypto"
|
210
|
+
"expo-standard-web-crypto",
|
211
|
+
"effect"
|
211
212
|
).pipe(
|
212
213
|
Command.stdout("inherit"), // Stream stdout to process.stdout
|
213
214
|
Command.exitCode // Get the exit code
|