mirror of https://github.com/sunface/rust-course
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
522 B
9 lines
522 B
5 years ago
|
# create-react-app does a check on several packages to make sure the
|
||
|
# versions required by CRA are the package versions available:
|
||
|
# https://github.com/facebook/create-react-app/blob/dea19fdb30c2e896ed8ac75b68a612b0b92b2406/packages/react-scripts/scripts/utils/verifyPackageTree.js#L23-L29
|
||
|
# The repo is set up to use yarn workspaces and keeps all
|
||
|
# packages/jaeger-ui packages local to packages/jaeger-ui. But, the
|
||
|
# check CRA does not detect this. So, the following env-var skips the
|
||
|
# check.
|
||
|
SKIP_PREFLIGHT_CHECK=true
|