Skip to content

Commit 96630de

Browse files
authored
Merge pull request #24 from jedwards1211/renovate/babel-eslint-8.x
fix(deps): update dependency babel-eslint to ^8.0.0
2 parents 3faefb8 + 9afc020 commit 96630de

File tree

2 files changed

+77
-12
lines changed

2 files changed

+77
-12
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@
5757
"@jedwards1211/eslint-config-flow": "^1.0.0",
5858
"babel-cli": "^6.23.0",
5959
"babel-core": "^6.23.1",
60-
"babel-eslint": "^7.1.1",
60+
"babel-eslint": "^8.0.0",
6161
"babel-plugin-istanbul": "^4.0.0",
6262
"babel-plugin-transform-runtime": "^6.23.0",
6363
"babel-preset-es2015": "^6.22.0",

yarn.lock

Lines changed: 76 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,59 @@
22
# yarn lockfile v1
33

44

5+
"@babel/code-frame@7.0.0-beta.31":
6+
version "7.0.0-beta.31"
7+
resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.0.0-beta.31.tgz#473d021ecc573a2cce1c07d5b509d5215f46ba35"
8+
dependencies:
9+
chalk "^2.0.0"
10+
esutils "^2.0.2"
11+
js-tokens "^3.0.0"
12+
13+
"@babel/helper-function-name@7.0.0-beta.31":
14+
version "7.0.0-beta.31"
15+
resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.0.0-beta.31.tgz#afe63ad799209989348b1109b44feb66aa245f57"
16+
dependencies:
17+
"@babel/helper-get-function-arity" "7.0.0-beta.31"
18+
"@babel/template" "7.0.0-beta.31"
19+
"@babel/traverse" "7.0.0-beta.31"
20+
"@babel/types" "7.0.0-beta.31"
21+
22+
"@babel/helper-get-function-arity@7.0.0-beta.31":
23+
version "7.0.0-beta.31"
24+
resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0-beta.31.tgz#1176d79252741218e0aec872ada07efb2b37a493"
25+
dependencies:
26+
"@babel/types" "7.0.0-beta.31"
27+
28+
"@babel/template@7.0.0-beta.31":
29+
version "7.0.0-beta.31"
30+
resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.0.0-beta.31.tgz#577bb29389f6c497c3e7d014617e7d6713f68bda"
31+
dependencies:
32+
"@babel/code-frame" "7.0.0-beta.31"
33+
"@babel/types" "7.0.0-beta.31"
34+
babylon "7.0.0-beta.31"
35+
lodash "^4.2.0"
36+
37+
"@babel/traverse@7.0.0-beta.31":
38+
version "7.0.0-beta.31"
39+
resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.0.0-beta.31.tgz#db399499ad74aefda014f0c10321ab255134b1df"
40+
dependencies:
41+
"@babel/code-frame" "7.0.0-beta.31"
42+
"@babel/helper-function-name" "7.0.0-beta.31"
43+
"@babel/types" "7.0.0-beta.31"
44+
babylon "7.0.0-beta.31"
45+
debug "^3.0.1"
46+
globals "^10.0.0"
47+
invariant "^2.2.0"
48+
lodash "^4.2.0"
49+
50+
"@babel/types@7.0.0-beta.31":
51+
version "7.0.0-beta.31"
52+
resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.0.0-beta.31.tgz#42c9c86784f674c173fb21882ca9643334029de4"
53+
dependencies:
54+
esutils "^2.0.2"
55+
lodash "^4.2.0"
56+
to-fast-properties "^2.0.0"
57+
558
"@commitlint/cli@^5.2.5":
659
version "5.2.5"
760
resolved "https://registry.npmjs.org/@commitlint/cli/-/cli-5.2.5.tgz#5662b71c10642ac0aba885c473ca458172414646"
@@ -382,14 +435,14 @@ babel-core@^6.23.1, babel-core@^6.24.0:
382435
slash "^1.0.0"
383436
source-map "^0.5.0"
384437

385-
babel-eslint@^7.1.1:
386-
version "7.2.1"
387-
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-7.2.1.tgz#079422eb73ba811e3ca0865ce87af29327f8c52f"
438+
babel-eslint@^8.0.0:
439+
version "8.0.3"
440+
resolved "https://registry.yarnpkg.com/babel-eslint/-/babel-eslint-8.0.3.tgz#f29ecf02336be438195325cd47c468da81ee4e98"
388441
dependencies:
389-
babel-code-frame "^6.22.0"
390-
babel-traverse "^6.23.1"
391-
babel-types "^6.23.0"
392-
babylon "^6.16.1"
442+
"@babel/code-frame" "7.0.0-beta.31"
443+
"@babel/traverse" "7.0.0-beta.31"
444+
"@babel/types" "7.0.0-beta.31"
445+
babylon "7.0.0-beta.31"
393446

394447
babel-generator@^6.18.0, babel-generator@^6.24.0:
395448
version "6.24.0"
@@ -982,7 +1035,11 @@ babel-types@^6.18.0, babel-types@^6.19.0, babel-types@^6.22.0, babel-types@^6.23
9821035
lodash "^4.2.0"
9831036
to-fast-properties "^1.0.1"
9841037

985-
babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0, babylon@^6.16.1:
1038+
babylon@7.0.0-beta.31:
1039+
version "7.0.0-beta.31"
1040+
resolved "https://registry.yarnpkg.com/babylon/-/babylon-7.0.0-beta.31.tgz#7ec10f81e0e456fd0f855ad60fa30c2ac454283f"
1041+
1042+
babylon@^6.11.0, babylon@^6.13.0, babylon@^6.15.0:
9861043
version "6.16.1"
9871044
resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.16.1.tgz#30c5a22f481978a9e7f8cdfdf496b11d94b404d3"
9881045

@@ -1141,7 +1198,7 @@ chai@^3.5.0:
11411198
deep-eql "^0.1.3"
11421199
type-detect "^1.0.0"
11431200

1144-
chalk@2.3.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0:
1201+
chalk@2.3.0, chalk@^2.0.0, chalk@^2.0.1, chalk@^2.1.0, chalk@^2.3.0:
11451202
version "2.3.0"
11461203
resolved "https://registry.npmjs.org/chalk/-/chalk-2.3.0.tgz#b5ea48efc9c1793dccc9b4767c93914d3f2d52ba"
11471204
dependencies:
@@ -1496,9 +1553,9 @@ debug@^2.1.1, debug@^2.2.0, debug@^2.6.0:
14961553
dependencies:
14971554
ms "0.7.2"
14981555

1499-
debug@^3.1.0:
1556+
debug@^3.0.1, debug@^3.1.0:
15001557
version "3.1.0"
1501-
resolved "https://registry.npmjs.org/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
1558+
resolved "https://registry.yarnpkg.com/debug/-/debug-3.1.0.tgz#5bb5a0672628b64149566ba16819e61518c67261"
15021559
dependencies:
15031560
ms "2.0.0"
15041561

@@ -2314,6 +2371,10 @@ global-prefix@^0.1.4:
23142371
is-windows "^0.2.0"
23152372
which "^1.2.12"
23162373

2374+
globals@^10.0.0:
2375+
version "10.4.0"
2376+
resolved "https://registry.yarnpkg.com/globals/-/globals-10.4.0.tgz#5c477388b128a9e4c5c5d01c7a2aca68c68b2da7"
2377+
23172378
globals@^9.0.0, globals@^9.14.0:
23182379
version "9.17.0"
23192380
resolved "https://registry.yarnpkg.com/globals/-/globals-9.17.0.tgz#0c0ca696d9b9bb694d2e5470bd37777caad50286"
@@ -4714,6 +4775,10 @@ to-fast-properties@^1.0.1:
47144775
version "1.0.2"
47154776
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.2.tgz#f3f5c0c3ba7299a7ef99427e44633257ade43320"
47164777

4778+
to-fast-properties@^2.0.0:
4779+
version "2.0.0"
4780+
resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e"
4781+
47174782
to-file@^0.2.0:
47184783
version "0.2.0"
47194784
resolved "https://registry.yarnpkg.com/to-file/-/to-file-0.2.0.tgz#236c6c088065e570defbd15cf4b4e565be46ea93"

0 commit comments

Comments
 (0)