| /expo/packages/@expo/package-manager/src/node/__tests__/ |
| H A D | YarnPackageManager-test.ts | 21 expect(yarn.name).toBe('yarn'); 27 await yarn.installAsync(); 40 await yarn.installAsync(); 62 await yarn.runAsync(['install']); 138 await yarn.installAsync(); 172 await yarn.uninstallAsync(); 181 await yarn.uninstallAsync(); 195 await yarn.addAsync(); 238 await yarn.addDevAsync(); 281 await yarn.addGlobalAsync(); [all …]
|
| /expo/.github/workflows/ |
| H A D | expo-updates-cli.yml | 9 - yarn.lock 14 - yarn.lock 32 yarn-workspace: 'true' 34 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 35 run: yarn install --frozen-lockfile 37 run: yarn build:cli 40 run: yarn test:cli
|
| H A D | home.yml | 9 - yarn.lock 15 - yarn.lock 37 yarn-workspace: 'true' 39 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 40 run: yarn install --frozen-lockfile 42 run: yarn tsc 45 run: yarn jest --maxWorkers 1 48 run: yarn lint --max-warnings 0
|
| H A D | expotools.yml | 29 yarn-tools: 'true' 31 if: steps.expo-caches.outputs.yarn-tools-hit != 'true' 32 run: yarn install --ignore-scripts --frozen-lockfile 35 run: yarn build 38 run: yarn tsc --noEmit 41 run: yarn lint --max-warnings 0
|
| H A D | docs.yml | 38 yarn-docs: 'true' 42 if: steps.expo-caches.outputs.yarn-docs-hit != 'true' 43 run: yarn install --frozen-lockfile 45 run: yarn test 47 run: yarn lint --max-warnings 0 48 - run: yarn danger ci 52 run: yarn export 56 # run: yarn lint-links --quiet 59 yarn export-server & 63 yarn test-links http://127.0.0.1:8000
|
| H A D | native-component-list.yml | 10 - yarn.lock 18 - yarn.lock 41 yarn-workspace: 'true' 42 yarn-tools: 'true' 44 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 45 run: yarn install --frozen-lockfile 47 run: yarn tsc 50 run: yarn lint --max-warnings 0
|
| H A D | create-expo-app.yml | 9 - yarn.lock 14 - yarn.lock 37 yarn-workspace: 'true' 39 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 40 run: yarn install --frozen-lockfile 42 run: yarn prepare 45 run: yarn test:e2e
|
| H A D | cli.yml | 14 - yarn.lock 24 - yarn.lock 47 yarn-workspace: 'true' 49 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 50 run: yarn install --frozen-lockfile 52 run: yarn typecheck 55 run: yarn prepare 58 run: yarn test:e2e 61 run: yarn test:e2e
|
| H A D | test-suite-lint.yml | 33 yarn-workspace: 'true' 35 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 36 run: yarn install --frozen-lockfile 38 run: yarn lint --max-warnings 0
|
| H A D | test-suite.yml | 12 - yarn.lock 19 - yarn.lock 43 yarn-workspace: 'true' 48 run: yarn test:web 89 yarn-workspace: 'true' 90 yarn-tools: 'true' 100 run: yarn react-native config 110 run: yarn detox:clean 169 yarn-workspace: 'true' 170 yarn-tools: 'true' [all …]
|
| H A D | android-unit-tests.yml | 13 - yarn.lock 22 - yarn.lock 56 yarn-workspace: 'true' 57 yarn-tools: 'true' 63 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 64 run: yarn install --frozen-lockfile
|
| H A D | android-instrumentation-tests.yml | 16 - yarn.lock 28 - yarn.lock 64 yarn-workspace: 'true' 65 yarn-tools: 'true' 71 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 72 run: yarn install --frozen-lockfile
|
| H A D | development-client.yml | 36 yarn-workspace: 'true' 40 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 41 run: yarn install --frozen-lockfile 63 run: yarn add file:../expo/packages/expo-dev-client 69 run: yarn expo prebuild --platform android 93 yarn-workspace: 'true' 95 if: steps.expo-caches.outputs.yarn-workspace-hit != 'true' 96 run: yarn install --frozen-lockfile 99 run: yarn create expo-app ./development-client-ios-test --yes 118 run: yarn add file:../expo/packages/expo-dev-client [all …]
|
| /expo/apps/bare-expo/ |
| H A D | README.md | 7 - Run on Android Emulator: `yarn android` (runs npm install if needed, builds the React Android bin… 8 - Run on iOS Simulator: `yarn ios` (this will automatically pod install, npm install, open a simula… 9 - E2E test on iOS Simulator: `yarn test:ios` (same as `yarn ios` but it installs Detox simulators, … 10 - Open a test `yarn open <ios | android> <...Modules>` this requires the platform to be running alr… 11 - ex: `yarn open ios Constants Crypto` 12 - ex: `yarn open android Random` 13 - Nuke `yarn nuke` (deletes all generated files for testing the setup scripts) 14 - `yarn ci:detox` This should very closely emulate what happens when you run in CI. Use this to ens…
|
| /expo/templates/expo-template-tabs/ |
| H A D | .npmignore | 11 yarn.lock 12 yarn-error.log 13 yarn-debug.log*
|
| /expo/templates/expo-template-blank-typescript/ |
| H A D | .npmignore | 11 yarn.lock 12 yarn-error.log 13 yarn-debug.log*
|
| /expo/templates/expo-template-blank/ |
| H A D | .npmignore | 11 yarn.lock 12 yarn-error.log 13 yarn-debug.log*
|
| /expo/packages/@expo/cli/src/install/__tests__/ |
| H A D | resolveOptions-test.ts | 9 /Specify at most one of: --npm, --pnpm, --yarn/ 12 /Specify at most one of: --npm, --pnpm, --yarn/ 31 yarn: true, 46 yarn: false,
|
| /expo/scripts/ |
| H A D | download-dependencies.sh | 14 require yarn || npm install -g yarn 26 yarn
|
| /expo/templates/expo-template-tv/ |
| H A D | .npmignore | 11 yarn.lock 12 yarn-error.log 14 yarn-debug.log*
|
| /expo/templates/expo-template-bare-minimum/ |
| H A D | .npmignore | 11 yarn.lock 12 yarn-error.log 14 yarn-debug.log*
|
| /expo/packages/expo-module-scripts/bin/ |
| H A D | npx | 7 if [[ ! "$npm_config_user_agent" =~ yarn ]] && [ -x "$(command -v yarn)" ]; then 8 yarn exec -- npx "$@"
|
| /expo/.github/actions/expo-caches/ |
| H A D | action.yml | 5 yarn-workspace: 6 description: 'Restore yarn workspace cache' 8 yarn-tools: 9 description: 'Restore yarn /tools cache' 11 yarn-docs: 12 description: 'Restore yarn /docs cache' 48 yarn-workspace-hit: 51 yarn-tools-hit: 54 yarn-docs-hit: 94 if: inputs.yarn-tools == 'true' [all …]
|
| /expo/docs/pages/troubleshooting/ |
| H A D | clear-cache-macos-linux.mdx | 16 yarn cache clean 17 yarn 41 yarn cache clean 42 yarn 46 yarn start -- --reset-cache 68 | `yarn cache clean` | Clear the global Yarn cache … 70 | `yarn`/`npm install` | Reinstall all dependencies …
|
| H A D | clear-cache-windows.mdx | 14 yarn cache clean 15 yarn 39 yarn cache clean 40 yarn 44 yarn start -- --reset-cache 66 | `yarn cache clean` | Clear the global Yarn cache … 68 | `yarn`/`npm install` | Reinstall all dependencies …
|