mirror of
https://github.com/facebook/react.git
synced 2026-02-24 20:53:03 +00:00
15 lines
262 B
Bash
Executable File
15 lines
262 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
yarn build --extract-errors
|
|
git checkout -- scripts/error-codes/codes.json
|
|
|
|
# Do a sanity check on bundles
|
|
node ./scripts/rollup/validate/index
|
|
|
|
# Check that the standalone reconciler isn't borked
|
|
cd fixtures/reconciler
|
|
yarn
|
|
yarn test
|