From 45d2922a1e231336b470ebbdfc443bbbe60ddba6 Mon Sep 17 00:00:00 2001 From: akameco Date: Wed, 14 Feb 2018 23:33:50 +0900 Subject: [PATCH] chore(npm): update eslint... --- examples/shopping-cart/package.json | 2 +- package.json | 6 +- packages/s2s-cli/bin/s2s.js | 3 +- packages/s2s-cli/src/cli/index.js | 2 +- packages/s2s-cli/src/cli/loadConfig.js | 6 +- .../s2s-cli/src/handlers/handle-plugin.js | 2 +- packages/s2s-cli/src/index.js | 2 +- packages/s2s-handler-babel-next/src/index.js | 2 +- packages/s2s-handler-typescript/src/index.js | 2 +- scripts/build.js | 2 +- scripts/watch.js | 2 +- types/babel.js | 4 +- types/index.js | 8 +- yarn.lock | 210 +++++++++--------- 14 files changed, 123 insertions(+), 130 deletions(-) diff --git a/examples/shopping-cart/package.json b/examples/shopping-cart/package.json index e506ea7a..6d70b2ee 100644 --- a/examples/shopping-cart/package.json +++ b/examples/shopping-cart/package.json @@ -13,7 +13,7 @@ "react": "^16.2.0", "react-dom": "^16.2.0", "react-redux": "^5.0.6", - "react-scripts": "1.1.0", + "react-scripts": "1.1.1", "redux": "^3.7.2", "redux-thunk": "^2.2.0" }, diff --git a/package.json b/package.json index 00c3b2a3..5a563f2e 100644 --- a/package.json +++ b/package.json @@ -36,7 +36,7 @@ "devDependencies": { "all-contributors-cli": "^4.10.1", "babel-cli": "^6.26.0", - "babel-jest": "^22.2.0", + "babel-jest": "^22.2.2", "babel-log": "^2.0.0", "babel-plugin-tester": "^5.0.0", "babel-preset-env": "^1.6.1", @@ -44,11 +44,11 @@ "babel-preset-stage-2": "^6.24.1", "coveralls": "^3.0.0", "eslint": "^4.17.0", - "eslint-config-precure": "^2.0.0", + "eslint-config-precure": "^2.3.0", "flow-bin": "^0.65.0", "globby": "^7.1.1", "husky": "^0.14.3", - "jest": "^22.2.0", + "jest": "^22.3.0", "jest-in-case": "^1.0.2", "lerna": "^2.8.0", "lint-staged": "^6.1.0", diff --git a/packages/s2s-cli/bin/s2s.js b/packages/s2s-cli/bin/s2s.js index e764e803..4b30e448 100755 --- a/packages/s2s-cli/bin/s2s.js +++ b/packages/s2s-cli/bin/s2s.js @@ -2,8 +2,7 @@ /* eslint flowtype/require-valid-file-annotation: 0 */ 'use strict' -// eslint-disable-next-line -if (process.env.NODE_ENV == null) { +if (!process.env.NODE_ENV) { process.env.NODE_ENV = 'development' } diff --git a/packages/s2s-cli/src/cli/index.js b/packages/s2s-cli/src/cli/index.js index d623229f..28e87560 100644 --- a/packages/s2s-cli/src/cli/index.js +++ b/packages/s2s-cli/src/cli/index.js @@ -1,5 +1,5 @@ // @flow -import s2s from '../' +import s2s from '..' import loadConfig from './loadConfig' export default function run() { diff --git a/packages/s2s-cli/src/cli/loadConfig.js b/packages/s2s-cli/src/cli/loadConfig.js index 2387000a..3442ac55 100644 --- a/packages/s2s-cli/src/cli/loadConfig.js +++ b/packages/s2s-cli/src/cli/loadConfig.js @@ -5,11 +5,13 @@ import type { Config } from 'types' const S2S_CONFIG_JS = 's2s.config.js' export default function loadConfig(cwd: string = process.cwd()): Config { - const fp = findUp.sync(S2S_CONFIG_JS, { cwd }) + const fp = findUp.sync(S2S_CONFIG_JS, { + cwd, + }) if (!fp) { throw new Error(`required ${S2S_CONFIG_JS}`) } // $FlowFixMe - const configModule = require(fp) // eslint-disable-line + const configModule = require(fp) // eslint-disable-line global-require,import/no-dynamic-require return configModule } diff --git a/packages/s2s-cli/src/handlers/handle-plugin.js b/packages/s2s-cli/src/handlers/handle-plugin.js index 2979d63f..bb9e7ae4 100644 --- a/packages/s2s-cli/src/handlers/handle-plugin.js +++ b/packages/s2s-cli/src/handlers/handle-plugin.js @@ -9,7 +9,7 @@ import { resolveInputPath, } from '../utils' import runHooks from '../hooks' -import { formatText } from '../reporters/' +import { formatText } from '../reporters' type Opts = { eventPath: Path, diff --git a/packages/s2s-cli/src/index.js b/packages/s2s-cli/src/index.js index 09873529..9ed35521 100644 --- a/packages/s2s-cli/src/index.js +++ b/packages/s2s-cli/src/index.js @@ -1,5 +1,5 @@ // @flow -import 'babel-polyfill' // eslint-disable-line +import 'babel-polyfill' // eslint-disable-line import/no-unassigned-import import chalk from 'chalk' import chokidar from 'chokidar' import prettierHook from 's2s-hook-prettier' diff --git a/packages/s2s-handler-babel-next/src/index.js b/packages/s2s-handler-babel-next/src/index.js index d3d52f24..68d963db 100644 --- a/packages/s2s-handler-babel-next/src/index.js +++ b/packages/s2s-handler-babel-next/src/index.js @@ -3,7 +3,7 @@ import { transform } from '@babel/core' import { getPluginName } from 's2s-helper-get-plugin-name' import type { Handler } from 'types' -// eslint-disable-next-line +// eslint-disable-next-line flowtype/no-weak-types export type Opts = string | Function | [string | Function, Object] export default ((code, { eventPath, plugin, filename }) => { diff --git a/packages/s2s-handler-typescript/src/index.js b/packages/s2s-handler-typescript/src/index.js index b5b1f851..3e9f4144 100644 --- a/packages/s2s-handler-typescript/src/index.js +++ b/packages/s2s-handler-typescript/src/index.js @@ -4,7 +4,7 @@ import { getPluginName } from 's2s-helper-get-plugin-name' import tsSyntax from '@babel/plugin-syntax-typescript' import type { Handler } from 'types' -// eslint-disable-next-line +// eslint-disable-next-line flowtype/no-weak-types export type Opts = string | Function | [string | Function, Object] export default ((code, { eventPath, plugin, filename }) => { diff --git a/scripts/build.js b/scripts/build.js index dd69680d..bd62c03e 100644 --- a/scripts/build.js +++ b/scripts/build.js @@ -68,7 +68,7 @@ function build() { const files = process.argv.slice(2) -if (files.length) { +if (files.length > 0) { files.forEach(buildFile) } else { process.stdout.write(chalk.bold.inverse(' Clean Building Files... \n')) diff --git a/scripts/watch.js b/scripts/watch.js index e6004e2a..b71a028c 100644 --- a/scripts/watch.js +++ b/scripts/watch.js @@ -47,7 +47,7 @@ getPkgs().forEach(p => { setInterval(() => { const files = Array.from(filesToBuild.keys()) - if (files.length) { + if (files.length > 0) { filesToBuild = new Map() try { execSync(`${BUILD_CMD} ${files.join(' ')}`, { stdio: [0, 1, 2] }) diff --git a/types/babel.js b/types/babel.js index 61d85a0d..f23ba203 100644 --- a/types/babel.js +++ b/types/babel.js @@ -12,9 +12,9 @@ export type BabelPath = { get(key: string): BabelNode, } -export type File = Object // eslint-disable-line +export type File = Object // eslint-disable-line flowtype/no-weak-types export type State = { - opts: Object, // eslint-disable-line + opts: Object, // eslint-disable-line flowtype/no-weak-types file: File, } diff --git a/types/index.js b/types/index.js index e4939fc9..19aa8c93 100644 --- a/types/index.js +++ b/types/index.js @@ -10,7 +10,7 @@ export type AnymatchPath = RegExp | string | (RegExp | string)[] export type HandlerOpts = { eventPath: Path, filename: Path, - // eslint-disable-next-line + // eslint-disable-next-line no-use-before-define plugin?: Plugin, } @@ -47,10 +47,10 @@ export type AfterHook = (code: Code, path: Path) => Code */ export type Config = { watch: Path, // file, dir, glob, or array - plugins?: Plugin[], // eslint-disable-line + plugins?: Plugin[], templatesDir?: string, - templates?: Template[], // eslint-disable-line - afterHooks?: AfterHook[], // eslint-disable-line + templates?: Template[], + afterHooks?: AfterHook[], prettier: boolean, handlerMapper?: { [extensions: string]: Handler }, ignored?: AnymatchPath, // file, dir, glob, regexp, or array diff --git a/yarn.lock b/yarn.lock index f134bc6e..8f475eda 100644 --- a/yarn.lock +++ b/yarn.lock @@ -745,9 +745,9 @@ babel-jest@20.0.3, babel-jest@^20.0.3: babel-plugin-istanbul "^4.0.0" babel-preset-jest "^20.0.3" -babel-jest@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.2.0.tgz#2d04087f5d149585e14f641d529551963fc9b4f8" +babel-jest@^22.2.2: + version "22.2.2" + resolved "https://registry.yarnpkg.com/babel-jest/-/babel-jest-22.2.2.tgz#eda38dca284e32cc5257f96a9b51351975de4e04" dependencies: babel-plugin-istanbul "^4.1.5" babel-preset-jest "^22.2.0" @@ -2649,9 +2649,9 @@ dot-prop@^4.1.0, dot-prop@^4.1.1: dependencies: is-obj "^1.0.0" -dotenv-expand@4.0.1: - version "4.0.1" - resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-4.0.1.tgz#68fddc1561814e0a10964111057ff138ced7d7a8" +dotenv-expand@4.2.0: + version "4.2.0" + resolved "https://registry.yarnpkg.com/dotenv-expand/-/dotenv-expand-4.2.0.tgz#def1f1ca5d6059d24a766e587942c21106ce1275" dotenv@4.0.0: version "4.0.0" @@ -2898,18 +2898,17 @@ eslint-ast-utils@^1.0.0: lodash.get "^4.4.2" lodash.zip "^4.2.0" -eslint-config-precure@^2.0.0: - version "2.0.0" - resolved "https://registry.yarnpkg.com/eslint-config-precure/-/eslint-config-precure-2.0.0.tgz#352006eee6cae4b9537065a316d63ea74981a856" +eslint-config-precure@^2.3.0: + version "2.3.0" + resolved "https://registry.yarnpkg.com/eslint-config-precure/-/eslint-config-precure-2.3.0.tgz#376fd82537b0e70c6923ff0153e2a223435679cc" dependencies: - all-contributors-cli "^4.10.1" babel-eslint "^8.2.1" eslint-config-prettier "^2.9.0" - eslint-plugin-flowtype "^2.41.0" + eslint-plugin-flowtype "^2.42.0" eslint-plugin-import "^2.8.0" eslint-plugin-jest "^21.7.0" - eslint-plugin-prettier "^2.5.0" - eslint-plugin-react "^7.5.1" + eslint-plugin-prettier "^2.6.0" + eslint-plugin-react "^7.6.1" eslint-plugin-unicorn "^3.0.1" eslint-config-prettier@^2.9.0: @@ -2952,9 +2951,9 @@ eslint-plugin-flowtype@2.39.1: dependencies: lodash "^4.15.0" -eslint-plugin-flowtype@^2.41.0: - version "2.42.0" - resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.42.0.tgz#7fcc98df4ed9482a22ac10ba4ca48d649c4c733a" +eslint-plugin-flowtype@^2.42.0: + version "2.44.0" + resolved "https://registry.yarnpkg.com/eslint-plugin-flowtype/-/eslint-plugin-flowtype-2.44.0.tgz#c0610d0018801e1fbe1eaec1c2174de1338ab4ee" dependencies: lodash "^4.15.0" @@ -2989,7 +2988,7 @@ eslint-plugin-jsx-a11y@5.1.1: emoji-regex "^6.1.0" jsx-ast-utils "^1.4.0" -eslint-plugin-prettier@^2.5.0: +eslint-plugin-prettier@^2.6.0: version "2.6.0" resolved "https://registry.yarnpkg.com/eslint-plugin-prettier/-/eslint-plugin-prettier-2.6.0.tgz#33e4e228bdb06142d03c560ce04ec23f6c767dd7" dependencies: @@ -3005,7 +3004,7 @@ eslint-plugin-react@7.4.0: jsx-ast-utils "^2.0.0" prop-types "^15.5.10" -eslint-plugin-react@^7.5.1: +eslint-plugin-react@^7.6.1: version "7.6.1" resolved "https://registry.yarnpkg.com/eslint-plugin-react/-/eslint-plugin-react-7.6.1.tgz#5d0e908be599f0c02fbf4eef0c7ed6f29dff7633" dependencies: @@ -3249,9 +3248,9 @@ expand-tilde@^2.0.0, expand-tilde@^2.0.2: dependencies: homedir-polyfill "^1.0.1" -expect@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/expect/-/expect-22.2.0.tgz#dddcaab2e22ccc9f51e7c1732e0aa723f2f1f2b8" +expect@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/expect/-/expect-22.3.0.tgz#b1cb7db27a951ab6055f43937277152a9f668028" dependencies: ansi-styles "^3.2.0" jest-diff "^22.1.0" @@ -3583,14 +3582,7 @@ fs.realpath@^1.0.0: version "1.0.0" resolved "https://registry.yarnpkg.com/fs.realpath/-/fs.realpath-1.0.0.tgz#1504ad2523158caa40db4a2787cb01411994ea4f" -fsevents@1.1.2: - version "1.1.2" - resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.2.tgz#3282b713fb3ad80ede0e9fcf4611b5aa6fc033f4" - dependencies: - nan "^2.3.0" - node-pre-gyp "^0.6.36" - -fsevents@^1.0.0, fsevents@^1.1.1: +fsevents@^1.0.0, fsevents@^1.1.1, fsevents@^1.1.3: version "1.1.3" resolved "https://registry.yarnpkg.com/fsevents/-/fsevents-1.1.3.tgz#11f82318f5fe7bb2cd22965a108e9306208216d8" dependencies: @@ -4642,9 +4634,9 @@ jest-cli@^20.0.4: worker-farm "^1.3.1" yargs "^7.0.2" -jest-cli@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.2.0.tgz#061acb5f995180b7f7bbc6cc8b8302f0804cfb74" +jest-cli@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-cli/-/jest-cli-22.3.0.tgz#3fd986f2674f4168c91965be56ab9917a82a45db" dependencies: ansi-escapes "^3.0.0" chalk "^2.0.1" @@ -4658,18 +4650,18 @@ jest-cli@^22.2.0: istanbul-lib-instrument "^1.8.0" istanbul-lib-source-maps "^1.2.1" jest-changed-files "^22.2.0" - jest-config "^22.2.0" - jest-environment-jsdom "^22.2.0" + jest-config "^22.3.0" + jest-environment-jsdom "^22.3.0" jest-get-type "^22.1.0" - jest-haste-map "^22.2.0" + jest-haste-map "^22.3.0" jest-message-util "^22.2.0" jest-regex-util "^22.1.0" jest-resolve-dependencies "^22.1.0" - jest-runner "^22.2.0" - jest-runtime "^22.2.0" + jest-runner "^22.3.0" + jest-runtime "^22.3.0" jest-snapshot "^22.2.0" - jest-util "^22.2.0" - jest-worker "^22.2.0" + jest-util "^22.3.0" + jest-worker "^22.2.2" micromatch "^2.3.11" node-notifier "^5.2.1" realpath-native "^1.0.0" @@ -4695,20 +4687,20 @@ jest-config@^20.0.4: jest-validate "^20.0.3" pretty-format "^20.0.3" -jest-config@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.2.0.tgz#762725cdd2552b7e2353df89e18876c320cd7d74" +jest-config@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-config/-/jest-config-22.3.0.tgz#94c7149f123933a872ee24c1719687419c4a623c" dependencies: chalk "^2.0.1" glob "^7.1.1" - jest-environment-jsdom "^22.2.0" - jest-environment-node "^22.2.0" + jest-environment-jsdom "^22.3.0" + jest-environment-node "^22.3.0" jest-get-type "^22.1.0" - jest-jasmine2 "^22.2.0" + jest-jasmine2 "^22.3.0" jest-regex-util "^22.1.0" - jest-resolve "^22.2.0" - jest-util "^22.2.0" - jest-validate "^22.2.0" + jest-resolve "^22.3.0" + jest-util "^22.3.0" + jest-validate "^22.2.2" pretty-format "^22.1.0" jest-diff@^20.0.3: @@ -4737,9 +4729,9 @@ jest-docblock@^21.0.0: version "21.2.0" resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-21.2.0.tgz#51529c3b30d5fd159da60c27ceedc195faf8d414" -jest-docblock@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.2.0.tgz#4d054eac354751e94a43a0ea2e2fe5c04cc61bbb" +jest-docblock@^22.2.2: + version "22.2.2" + resolved "https://registry.yarnpkg.com/jest-docblock/-/jest-docblock-22.2.2.tgz#617f13edb16ec64202002b3c336cd14ae36c0631" dependencies: detect-newline "^2.1.0" @@ -4751,12 +4743,12 @@ jest-environment-jsdom@^20.0.3: jest-util "^20.0.3" jsdom "^9.12.0" -jest-environment-jsdom@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.2.0.tgz#e9537400cbdef2d1e61d7196f8afa40e826fe9d8" +jest-environment-jsdom@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-environment-jsdom/-/jest-environment-jsdom-22.3.0.tgz#c267a063e5dc16219fba0e07542d8aa2576a1c88" dependencies: jest-mock "^22.2.0" - jest-util "^22.2.0" + jest-util "^22.3.0" jsdom "^11.5.1" jest-environment-node@^20.0.3: @@ -4766,12 +4758,12 @@ jest-environment-node@^20.0.3: jest-mock "^20.0.3" jest-util "^20.0.3" -jest-environment-node@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.2.0.tgz#ba7d0183fac076d34867367a4ac53ced69e3d3a9" +jest-environment-node@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-environment-node/-/jest-environment-node-22.3.0.tgz#97d34d9706a718d743075149d1950555c10338c0" dependencies: jest-mock "^22.2.0" - jest-util "^22.2.0" + jest-util "^22.3.0" jest-get-type@^21.2.0: version "21.2.0" @@ -4792,14 +4784,14 @@ jest-haste-map@^20.0.4: sane "~1.6.0" worker-farm "^1.3.1" -jest-haste-map@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.2.0.tgz#c9f508b8f63322490339ba02343dd688474d9ad5" +jest-haste-map@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-haste-map/-/jest-haste-map-22.3.0.tgz#e7f048a88735bae07ca12de8785eb8bc522adeab" dependencies: fb-watchman "^2.0.0" graceful-fs "^4.1.11" - jest-docblock "^22.2.0" - jest-worker "^22.2.0" + jest-docblock "^22.2.2" + jest-worker "^22.2.2" micromatch "^2.3.11" sane "^2.0.0" @@ -4821,14 +4813,14 @@ jest-jasmine2@^20.0.4: once "^1.4.0" p-map "^1.1.1" -jest-jasmine2@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.2.0.tgz#c5f6a9a44f3a48b31bfa50f9fb2710c19cab21da" +jest-jasmine2@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-jasmine2/-/jest-jasmine2-22.3.0.tgz#ea127dfbb04c6e03998ae0358225435e47520666" dependencies: callsites "^2.0.0" chalk "^2.0.1" co "^4.6.0" - expect "^22.2.0" + expect "^22.3.0" graceful-fs "^4.1.11" is-generator-fn "^1.0.0" jest-diff "^22.1.0" @@ -4921,27 +4913,27 @@ jest-resolve@^20.0.4: is-builtin-module "^1.0.0" resolve "^1.3.2" -jest-resolve@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.2.0.tgz#25aa8b887b31ab8c79763503e209d7c136f74ab1" +jest-resolve@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-resolve/-/jest-resolve-22.3.0.tgz#648e797f708e8701071a0fa9fac652c577bb66d9" dependencies: browser-resolve "^1.11.2" chalk "^2.0.1" -jest-runner@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.2.0.tgz#173249cff9f58d65c2bb3a47a03ee4806996c927" +jest-runner@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-runner/-/jest-runner-22.3.0.tgz#70393f62770be754e2d14f5ca3d896e408aa001a" dependencies: exit "^0.1.2" - jest-config "^22.2.0" - jest-docblock "^22.2.0" - jest-haste-map "^22.2.0" - jest-jasmine2 "^22.2.0" + jest-config "^22.3.0" + jest-docblock "^22.2.2" + jest-haste-map "^22.3.0" + jest-jasmine2 "^22.3.0" jest-leak-detector "^22.1.0" jest-message-util "^22.2.0" - jest-runtime "^22.2.0" - jest-util "^22.2.0" - jest-worker "^22.2.0" + jest-runtime "^22.3.0" + jest-util "^22.3.0" + jest-worker "^22.2.2" throat "^4.0.0" jest-runtime@^20.0.4: @@ -4964,22 +4956,22 @@ jest-runtime@^20.0.4: strip-bom "3.0.0" yargs "^7.0.2" -jest-runtime@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.2.0.tgz#f2ff307eae5ed10fbca8501534aba0922c7da693" +jest-runtime@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-runtime/-/jest-runtime-22.3.0.tgz#1883d6a4227c1f6af276ead3ed27654257d1ef8c" dependencies: babel-core "^6.0.0" - babel-jest "^22.2.0" + babel-jest "^22.2.2" babel-plugin-istanbul "^4.1.5" chalk "^2.0.1" convert-source-map "^1.4.0" exit "^0.1.2" graceful-fs "^4.1.11" - jest-config "^22.2.0" - jest-haste-map "^22.2.0" + jest-config "^22.3.0" + jest-haste-map "^22.3.0" jest-regex-util "^22.1.0" - jest-resolve "^22.2.0" - jest-util "^22.2.0" + jest-resolve "^22.3.0" + jest-util "^22.3.0" json-stable-stringify "^1.0.1" micromatch "^2.3.11" realpath-native "^1.0.0" @@ -5022,16 +5014,16 @@ jest-util@^20.0.3: leven "^2.1.0" mkdirp "^0.5.1" -jest-util@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.2.0.tgz#afad693641447858bec7b37f32952516bf887262" +jest-util@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest-util/-/jest-util-22.3.0.tgz#d05bff567a3a86c0e9b3838d812f8290aa768097" dependencies: callsites "^2.0.0" chalk "^2.0.1" graceful-fs "^4.1.11" is-ci "^1.0.10" jest-message-util "^22.2.0" - jest-validate "^22.2.0" + jest-validate "^22.2.2" mkdirp "^0.5.1" jest-validate@^20.0.3: @@ -5052,18 +5044,18 @@ jest-validate@^21.1.0: leven "^2.1.0" pretty-format "^21.2.1" -jest-validate@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.2.0.tgz#f7ce459105a8210825e5e57279f868ab080063fa" +jest-validate@^22.2.2: + version "22.2.2" + resolved "https://registry.yarnpkg.com/jest-validate/-/jest-validate-22.2.2.tgz#9cdce422c93cc28395e907ac6bbc929158d9a6ba" dependencies: chalk "^2.0.1" jest-get-type "^22.1.0" leven "^2.1.0" pretty-format "^22.1.0" -jest-worker@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.2.0.tgz#d88d6ee176d6409f206cbbf7b485250793264262" +jest-worker@^22.2.2: + version "22.2.2" + resolved "https://registry.yarnpkg.com/jest-worker/-/jest-worker-22.2.2.tgz#c1f5dc39976884b81f68ec50cb8532b2cbab3390" dependencies: merge-stream "^1.0.1" @@ -5073,12 +5065,12 @@ jest@20.0.4: dependencies: jest-cli "^20.0.4" -jest@^22.2.0: - version "22.2.0" - resolved "https://registry.yarnpkg.com/jest/-/jest-22.2.0.tgz#024040afa1e83faf212f35dfb8941e7ece2d8b25" +jest@^22.3.0: + version "22.3.0" + resolved "https://registry.yarnpkg.com/jest/-/jest-22.3.0.tgz#07434314d2e8662ea936552d950680b7e6551b0d" dependencies: import-local "^1.0.0" - jest-cli "^22.2.0" + jest-cli "^22.3.0" js-base64@^2.1.9: version "2.4.3" @@ -5922,7 +5914,7 @@ node-notifier@^5.0.2, node-notifier@^5.2.1: shellwords "^0.1.1" which "^1.3.0" -node-pre-gyp@^0.6.36, node-pre-gyp@^0.6.39: +node-pre-gyp@^0.6.39: version "0.6.39" resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.6.39.tgz#c00e96860b23c0e1420ac7befc5044e1d78d8649" dependencies: @@ -7020,9 +7012,9 @@ react-redux@^5.0.6: loose-envify "^1.1.0" prop-types "^15.5.10" -react-scripts@1.1.0: - version "1.1.0" - resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-1.1.0.tgz#0c94b2b2e14cff2dad8919397901b5edebeba511" +react-scripts@1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-1.1.1.tgz#279d449f7311fed910506987a1ade014027788a8" dependencies: autoprefixer "7.1.6" babel-core "6.26.0" @@ -7035,7 +7027,7 @@ react-scripts@1.1.0: chalk "1.1.3" css-loader "0.28.7" dotenv "4.0.0" - dotenv-expand "4.0.1" + dotenv-expand "4.2.0" eslint "4.10.0" eslint-config-react-app "^2.1.0" eslint-loader "1.9.0" @@ -7062,7 +7054,7 @@ react-scripts@1.1.0: webpack-manifest-plugin "1.3.2" whatwg-fetch "2.0.3" optionalDependencies: - fsevents "1.1.2" + fsevents "^1.1.3" react-test-renderer@^16.0.0-0, react-test-renderer@^16.2.0: version "16.2.0"