/
githubmirror
/
babel
Обзор
Документация
Войти
/
githubmirror
/
babel
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
scripts/integration-tests/e2e-create-react-app.sh
58 строк
2 KB
Huáng Jùnliàng
Fix Node.js 24 CI error (#17294)
07 май 2025, 17:55
Не верифицирован
07 май 2025, 17:55
6d749d2
Код
Авторство
О чём код?
#!/usr/bin/env bash #==============================================================================# # SETUP # #==============================================================================# # Start in scripts/integration-tests/ even if run from root directory cd "$(dirname "$0")" || exit source utils/local-registry.sh source utils/cleanup.sh # Echo every command being executed set -x # Clone create-react-app git clone --depth=1 https://github.com/facebook/create-react-app.git tmp/create-react-app cd tmp/create-react-app || exit #==============================================================================# # TEST # #==============================================================================# # !!! WARNING !!! # create-react-app uses the useBuiltIns: true option of @babel/preset-react, # removed in Babel 8.0.0. And it does not specify runtime option. The test will break on # runtime: "automatic", default of Babel 8. # This change replaces useBuiltIns: true with runtime: "classic" sed -i 's/useBuiltIns: true/runtime: "classic"/' packages/babel-preset-react-app/create.js bump_deps="$PWD/../../utils/bump-babel-dependencies.js" node "$bump_deps" resolutions for d in ./packages/*/ do (cd "$d"; node "$bump_deps" resolutions) done startLocalRegistry "$PWD"/../../verdaccio-config.yml # Remove this when CRA updates jest-worker in their lockfile node -e " var pkg = require('./package.json'); pkg.resolutions = { 'jest-worker': '27.4.5' }; fs.writeFileSync('./package.json', JSON.stringify(pkg, null, 2)); " npm install --ignore-scripts npx npm-force-resolutions npm install # Test CI=true npm run test cleanup