Skip to content
This repository was archived by the owner on Dec 14, 2023. It is now read-only.

Commit 9f3e009

Browse files
committed
Update webpack loaders to match webpack version
1 parent fcb320b commit 9f3e009

File tree

2 files changed

+38
-14
lines changed

2 files changed

+38
-14
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@
5555
"autoprefixer": "^6.7.2",
5656
"babel-core": "^6.22.1",
5757
"babel-eslint": "^7.1.1",
58-
"babel-loader": "^6.2.10",
58+
"babel-loader": "^7.0.0",
5959
"babel-plugin-istanbul": "^4.1.1",
6060
"babel-plugin-transform-runtime": "^6.22.0",
6161
"babel-preset-env": "^1.3.2",
@@ -81,7 +81,7 @@
8181
"eslint-plugin-import": "^2.2.0",
8282
"eventsource-polyfill": "^0.9.6",
8383
"express": "^4.17.1",
84-
"extract-text-webpack-plugin": "^2.0.0",
84+
"extract-text-webpack-plugin": "^3.0.0",
8585
"file-loader": "^0.11.1",
8686
"friendly-errors-webpack-plugin": "^1.1.3",
8787
"html-webpack-plugin": "^2.28.0",

yarn.lock

Lines changed: 36 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -411,6 +411,13 @@ async@^2.0.0, async@^2.1.2, async@^2.1.4:
411411
dependencies:
412412
lodash "^4.14.0"
413413

414+
async@^2.4.1:
415+
version "2.6.3"
416+
resolved "https://registry.yarnpkg.com/async/-/async-2.6.3.tgz#d72625e2344a3656e3a3ad4fa749fa83299d82ff"
417+
integrity sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==
418+
dependencies:
419+
lodash "^4.17.14"
420+
414421
async@^2.5.0, async@^2.6.2:
415422
version "2.6.2"
416423
resolved "https://registry.yarnpkg.com/async/-/async-2.6.2.tgz#18330ea7e6e313887f5d2f2a904bac6fe4dd5381"
@@ -633,14 +640,14 @@ babel-helpers@^6.24.1:
633640
babel-runtime "^6.22.0"
634641
babel-template "^6.24.1"
635642

636-
babel-loader@^6.2.10:
637-
version "6.4.1"
638-
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-6.4.1.tgz#0b34112d5b0748a8dcdbf51acf6f9bd42d50b8ca"
643+
babel-loader@^7.0.0:
644+
version "7.1.5"
645+
resolved "https://registry.yarnpkg.com/babel-loader/-/babel-loader-7.1.5.tgz#e3ee0cd7394aa557e013b02d3e492bfd07aa6d68"
646+
integrity sha512-iCHfbieL5d1LfOQeeVJEUyD9rTwBcP/fcEbRCfempxTDuqrKpu0AZjLAQHEQa3Yqyj9ORKe2iHfoj4rHLf7xpw==
639647
dependencies:
640-
find-cache-dir "^0.1.1"
641-
loader-utils "^0.2.16"
648+
find-cache-dir "^1.0.0"
649+
loader-utils "^1.0.2"
642650
mkdirp "^0.5.1"
643-
object-assign "^4.0.1"
644651

645652
babel-messages@^6.23.0:
646653
version "6.23.0"
@@ -3278,12 +3285,13 @@ extglob@^2.0.4:
32783285
snapdragon "^0.8.1"
32793286
to-regex "^3.0.1"
32803287

3281-
extract-text-webpack-plugin@^2.0.0:
3282-
version "2.1.2"
3283-
resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-2.1.2.tgz#756ef4efa8155c3681833fbc34da53b941746d6c"
3288+
extract-text-webpack-plugin@^3.0.0:
3289+
version "3.0.2"
3290+
resolved "https://registry.yarnpkg.com/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz#5f043eaa02f9750a9258b78c0a6e0dc1408fb2f7"
3291+
integrity sha512-bt/LZ4m5Rqt/Crl2HiKuAl/oqg0psx1tsTLkvWbJen1CtD+fftkZhMaQ9HOtY2gWsl2Wq+sABmMVi9z3DhKWQQ==
32843292
dependencies:
3285-
async "^2.1.2"
3286-
loader-utils "^1.0.2"
3293+
async "^2.4.1"
3294+
loader-utils "^1.1.0"
32873295
schema-utils "^0.3.0"
32883296
webpack-sources "^1.0.1"
32893297

@@ -3455,6 +3463,15 @@ find-cache-dir@^0.1.1:
34553463
mkdirp "^0.5.1"
34563464
pkg-dir "^1.0.0"
34573465

3466+
find-cache-dir@^1.0.0:
3467+
version "1.0.0"
3468+
resolved "https://registry.yarnpkg.com/find-cache-dir/-/find-cache-dir-1.0.0.tgz#9288e3e9e3cc3748717d39eade17cf71fc30ee6f"
3469+
integrity sha1-kojj6ePMN0hxfTnq3hfPcfww7m8=
3470+
dependencies:
3471+
commondir "^1.0.1"
3472+
make-dir "^1.0.0"
3473+
pkg-dir "^2.0.0"
3474+
34583475
find-root@^0.1.1:
34593476
version "0.1.2"
34603477
resolved "https://registry.yarnpkg.com/find-root/-/find-root-0.1.2.tgz#98d2267cff1916ccaf2743b3a0eea81d79d7dcd1"
@@ -5324,7 +5341,7 @@ lodash@4, lodash@^4.0.0, lodash@^4.0.1, lodash@^4.11.2, lodash@^4.14.0, lodash@^
53245341
version "4.17.4"
53255342
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.4.tgz#78203a4d1c328ae1d86dca6460e369b57f4055ae"
53265343

5327-
[email protected], lodash@^4.17.10:
5344+
[email protected], lodash@^4.17.10, lodash@^4.17.14:
53285345
version "4.17.15"
53295346
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548"
53305347
integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==
@@ -6494,6 +6511,13 @@ pkg-dir@^1.0.0:
64946511
dependencies:
64956512
find-up "^1.0.0"
64966513

6514+
pkg-dir@^2.0.0:
6515+
version "2.0.0"
6516+
resolved "https://registry.yarnpkg.com/pkg-dir/-/pkg-dir-2.0.0.tgz#f6d5d1109e19d63edf428e0bd57e12777615334b"
6517+
integrity sha1-9tXREJ4Z1j7fQo4L1X4Sd3YVM0s=
6518+
dependencies:
6519+
find-up "^2.1.0"
6520+
64976521
pluralize@^1.2.1:
64986522
version "1.2.1"
64996523
resolved "https://registry.yarnpkg.com/pluralize/-/pluralize-1.2.1.tgz#d1a21483fd22bb41e58a12fa3421823140897c45"

0 commit comments

Comments
 (0)