mirror of
https://github.com/facebook/react.git
synced 2025-11-01 09:12:30 +00:00
8e876d244c
* Move ReactFiberTreeReflection to react-reconciler/reflection #11659 * Use * for react-reconciler We don't know the latest local version, and release script currently doesn't bump deps automatically. * Remove unused field * Use CommonJS in entry point for consistency * Undo the CommonJS change I didn't realize it would break the build. * Record sizes * Remove reconciler fixtures They're unnecessary now that we run real tests on reconciler bundles.
13 lines
381 B
Bash
Executable File
13 lines
381 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
yarn build --extract-errors
|
|
# Note: since we run the full build including extracting error codes,
|
|
# it is important that we *don't* reset the change to `scripts/error-codes/codes.json`.
|
|
# When production bundle tests run later, it needs to be available.
|
|
# See https://github.com/facebook/react/pull/11655.
|
|
|
|
# Do a sanity check on bundles
|
|
yarn lint-build
|