We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Good morning my friends
I'm having trouble using create-react-native-app on lerna using workspaces
Below I do the step by step, but we see that this way the node_modules folder in the package is not stored
It is necessary to have the node_modules folder in the folder in packages, because you have an android folder with requests to that folder
$ lerna info System: OS: Linux 5.4 Ubuntu 20.04 LTS (Focal Fossa) CPU: (4) x64 Intel(R) Core(TM) i7-5500U CPU @ 2.40GHz Binaries: lerna: v3.22.1 Node: 12.18.1 - ~/.nvm/versions/node/v12.18.1/bin/node Yarn: 1.22.4 - /usr/bin/yarn npm: 6.14.5 - ~/.nvm/versions/node/v12.18.1/bin/npm Utilities: Git: 2.25.1 - /usr/bin/git $ react-native info info Fetching system and libraries information... System: OS: Linux 5.4 Ubuntu 20.04 LTS (Focal Fossa) CPU: (4) x64 Intel(R) Core(TM) i7-5500U CPU @ 2.40GHz Memory: 1.07 GB / 15.56 GB Shell: 5.0.16 - /bin/bash Binaries: Node: 12.18.1 - ~/.nvm/versions/node/v12.18.1/bin/node Yarn: 1.22.4 - /usr/bin/yarn npm: 6.14.5 - ~/.nvm/versions/node/v12.18.1/bin/npm Watchman: 4.9.0 - /home/linuxbrew/.linuxbrew/bin/watchman SDKs: Android SDK: API Levels: 28, 30 Build Tools: 28.0.3, 30.0.0 System Images: android-30 | Google APIs Intel x86 Atom, android-30 | Google Play Intel x86 Atom Android NDK: Not Found IDEs: Android Studio: Not Found Languages: Java: 11.0.7 - /usr/bin/javac Python: 2.7.18 - /usr/bin/python npmPackages: @react-native-community/cli: Not Found react: ~16.11.0 => 16.11.0 react-native: ~0.62.2 => 0.62.2 npmGlobalPackages: *react-native*: Not Found $ python --version Python 2.7.18rc1 $ python3 --version Python 3.8.2 $ npm list -g --depth 0 /home/marcio/.nvm/versions/node/v12.18.1/lib ├── @prettier/[email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] ├── [email protected] └── [email protected]
# cd ~/Downloads rm -fr ~/Downloads/monorepo-3 mkdir -p ~/Downloads/monorepo-3 cd ~/Downloads/monorepo-3 pwd && ls echo '{ "version": "independent", "npmClient": "yarn", "useWorkspaces": true, "packages": [ "packages/*" ] }' >lerna.json cat lerna.json echo '{ "name": "root", "private": true, "workspaces": [ "packages/*" ], "devDependencies": { "lerna": "^3.22.1" } }' >package.json cat package.json lerna init # cd packages npx create-react-native-app default-create-react-native-app --yes # OR # react-native init defaultreactnative # clean cd .. yarn check --integrity --verify-tree || true lerna list --all --long || true lerna clean --yes || true pwd && ls rm -fr node_modules find . -name "node_modules" -type d find \ . \ -name "node_modules" \ -o -name ".yarncache" \ -type d -prune | while read ITEM; do (du -sh "$ITEM") (rm -fr "$ITEM") done find \ . \ -name "*.touch" \ -o -name "*error.log" \ -o -name "*debug.log" \ -o -name "*lock.json" \ -o -name "*lock.yaml" \ -o -name "audit-resolve.json" \ -o -name ".yarnclean" \ -o -name "yarn.lock" \ -type f | while read ITEM; do (du -sh "$ITEM") (rm -fr "$ITEM") done # lerna init lerna info lerna list --all --long lerna bootstrap # ls && ls ./packages/* du -sh ./packages/default-create-react-native-app/node_modules/react-native-unimodules/gradle.groovy du -sh ./packages/default-create-react-native-app/node_modules/react-native/react.gradle du -sh ./packages/default-create-react-native-app/node_modules/expo-updates/scripts/create-manifest-android.gradle du -sh ./packages/default-create-react-native-app/node_modules/@react-native-community/cli-platform-android/native_modules.gradle #
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Good morning my friends
I'm having trouble using create-react-native-app on lerna using workspaces
Below I do the step by step, but we see that this way the node_modules folder in the package is not stored
It is necessary to have the node_modules folder in the folder in packages, because you have an android folder with requests to that folder
Environment info:
Steṕs to reproduce
The text was updated successfully, but these errors were encountered: