Fix CI build (#8122)

This commit is contained in:
Ian Schmitz
2019-12-08 21:05:52 -08:00
committed by GitHub
parent b19bffe110
commit 0b293e9432
6 changed files with 510 additions and 457 deletions

View File

@@ -21,24 +21,24 @@
"test.js"
],
"dependencies": {
"@babel/core": "7.7.4",
"@babel/core": "7.7.5",
"@babel/plugin-proposal-class-properties": "7.7.4",
"@babel/plugin-proposal-decorators": "7.7.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "7.7.4",
"@babel/plugin-proposal-numeric-separator": "7.7.4",
"@babel/plugin-proposal-object-rest-spread": "7.7.4",
"@babel/plugin-proposal-optional-chaining": "7.7.4",
"@babel/plugin-proposal-optional-chaining": "7.7.5",
"@babel/plugin-syntax-dynamic-import": "7.7.4",
"@babel/plugin-transform-destructuring": "7.7.4",
"@babel/plugin-transform-flow-strip-types": "7.7.4",
"@babel/plugin-transform-react-display-name": "7.7.4",
"@babel/plugin-transform-runtime": "7.7.4",
"@babel/preset-env": "7.7.4",
"@babel/plugin-transform-runtime": "7.7.6",
"@babel/preset-env": "7.7.6",
"@babel/preset-react": "7.7.4",
"@babel/preset-typescript": "7.7.4",
"@babel/runtime": "7.7.4",
"@babel/runtime": "7.7.6",
"babel-plugin-dynamic-import-node": "2.3.0",
"babel-plugin-macros": "2.7.1",
"babel-plugin-macros": "2.8.0",
"babel-plugin-transform-react-remove-prop-types": "0.4.24"
}
}

File diff suppressed because it is too large Load Diff

View File

@@ -52,14 +52,14 @@
"dependencies": {
"@babel/code-frame": "7.5.5",
"address": "1.1.2",
"browserslist": "4.7.3",
"browserslist": "4.8.2",
"chalk": "2.4.2",
"cross-spawn": "6.0.5",
"detect-port-alt": "1.1.6",
"escape-string-regexp": "1.0.5",
"filesize": "3.6.1",
"find-up": "3.0.0",
"fork-ts-checker-webpack-plugin": "3.1.0",
"fork-ts-checker-webpack-plugin": "3.1.1",
"global-modules": "2.0.0",
"globby": "8.0.2",
"gzip-size": "5.1.1",

View File

@@ -35,7 +35,7 @@
],
"devDependencies": {
"@babel/code-frame": "7.5.5",
"@babel/core": "7.7.4",
"@babel/core": "7.7.5",
"anser": "1.4.9",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
@@ -49,7 +49,7 @@
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react": "7.17.0",
"flow-bin": "^0.110.0",
"html-entities": "1.2.1",
"jest": "24.9.0",

View File

@@ -28,10 +28,10 @@
},
"types": "./lib/react-app.d.ts",
"dependencies": {
"@babel/core": "7.7.4",
"@babel/core": "7.7.5",
"@svgr/webpack": "4.3.3",
"@typescript-eslint/eslint-plugin": "^2.8.0",
"@typescript-eslint/parser": "^2.8.0",
"@typescript-eslint/eslint-plugin": "^2.10.0",
"@typescript-eslint/parser": "^2.10.0",
"babel-eslint": "10.0.3",
"babel-jest": "^24.9.0",
"babel-loader": "8.0.6",
@@ -39,23 +39,23 @@
"babel-preset-react-app": "^9.1.0",
"camelcase": "^5.3.1",
"case-sensitive-paths-webpack-plugin": "2.2.0",
"css-loader": "3.2.0",
"css-loader": "3.2.1",
"dotenv": "8.2.0",
"dotenv-expand": "5.1.0",
"eslint": "^6.6.0",
"eslint-config-react-app": "^5.1.0",
"eslint-loader": "3.0.2",
"eslint-loader": "3.0.3",
"eslint-plugin-flowtype": "3.13.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.16.0",
"eslint-plugin-react": "7.17.0",
"eslint-plugin-react-hooks": "^1.6.1",
"file-loader": "4.3.0",
"fs-extra": "^8.1.0",
"html-webpack-plugin": "4.0.0-beta.5",
"identity-obj-proxy": "3.0.0",
"jest": "24.9.0",
"jest-environment-jsdom-fourteen": "0.1.0",
"jest-environment-jsdom-fourteen": "1.0.1",
"jest-resolve": "24.9.0",
"jest-watch-typeahead": "0.4.2",
"mini-css-extract-plugin": "0.8.0",
@@ -68,12 +68,12 @@
"postcss-safe-parser": "4.0.1",
"react-app-polyfill": "^1.0.5",
"react-dev-utils": "^10.0.0",
"resolve": "1.12.2",
"resolve": "1.13.1",
"resolve-url-loader": "3.1.1",
"sass-loader": "8.0.0",
"semver": "6.3.0",
"style-loader": "1.0.0",
"terser-webpack-plugin": "2.2.1",
"style-loader": "1.0.1",
"terser-webpack-plugin": "2.2.2",
"ts-pnp": "1.1.5",
"url-loader": "2.3.0",
"webpack": "4.41.2",

View File

@@ -98,7 +98,7 @@ startLocalRegistry "$root_path"/tasks/verdaccio.yaml
cd packages/react-error-overlay/
yarn test
if [ $AGENT_OS != 'Windows_NT' ]; then
if [ "$AGENT_OS" != 'Windows_NT' ]; then
# Flow started hanging on Windows build agents
yarn flow
fi