Skip to content

Commit c9c14b9

Browse files
clydinmgechev
authored andcommittedJul 1, 2020
fix(@angular-devkit/build-angular): update copy-webpack-plugin to 6.0.3
Prior versions of copy-webpack-plugin 6.x contained a memory usage regression that could cause gigabytes of memory to be used during a build. Version 6.0.3 contains a fix that prevents this issue. Referenced Issue: webpack-contrib/copy-webpack-plugin#505 (cherry picked from commit 78064a8)
1 parent 3c7dc65 commit c9c14b9

File tree

2 files changed

+35
-9
lines changed

2 files changed

+35
-9
lines changed
 

‎packages/angular_devkit/build_angular/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
"cacache": "15.0.0",
2525
"caniuse-lite": "^1.0.30001032",
2626
"circular-dependency-plugin": "5.2.0",
27-
"copy-webpack-plugin": "6.0.2",
27+
"copy-webpack-plugin": "6.0.3",
2828
"core-js": "3.6.4",
2929
"css-loader": "3.5.1",
3030
"cssnano": "4.1.10",

‎yarn.lock

+34-8
Original file line numberDiff line numberDiff line change
@@ -3593,21 +3593,21 @@ copy-descriptor@^0.1.0:
35933593
resolved "https://registry.yarnpkg.com/copy-descriptor/-/copy-descriptor-0.1.1.tgz#676f6eb3c39997c2ee1ac3a924fd6124748f578d"
35943594
integrity sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=
35953595

3596-
copy-webpack-plugin@6.0.2:
3597-
version "6.0.2"
3598-
resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-6.0.2.tgz#10efc6ad219a61acbf2f5fb50af83da38431bc34"
3599-
integrity sha512-9Gm8X0c6eXlKnmltMPFCBeGOKjtcRIyTt4VaO3k1TkNgVTe5Ov2lYsYVuyLp0kp8DItO3apewflM+1GYgh6V2Q==
3596+
copy-webpack-plugin@6.0.3:
3597+
version "6.0.3"
3598+
resolved "https://registry.yarnpkg.com/copy-webpack-plugin/-/copy-webpack-plugin-6.0.3.tgz#2b3d2bfc6861b96432a65f0149720adbd902040b"
3599+
integrity sha512-q5m6Vz4elsuyVEIUXr7wJdIdePWTubsqVbEMvf1WQnHGv0Q+9yPRu7MtYFPt+GBOXRav9lvIINifTQ1vSCs+eA==
36003600
dependencies:
36013601
cacache "^15.0.4"
3602-
fast-glob "^3.2.2"
3602+
fast-glob "^3.2.4"
36033603
find-cache-dir "^3.3.1"
36043604
glob-parent "^5.1.1"
36053605
globby "^11.0.1"
36063606
loader-utils "^2.0.0"
36073607
normalize-path "^3.0.0"
3608-
p-limit "^2.3.0"
3608+
p-limit "^3.0.1"
36093609
schema-utils "^2.7.0"
3610-
serialize-javascript "^3.1.0"
3610+
serialize-javascript "^4.0.0"
36113611
webpack-sources "^1.4.3"
36123612

36133613
core-js-compat@^3.6.2:
@@ -4844,7 +4844,7 @@ fast-deep-equal@^3.1.1:
48444844
resolved "https://registry.yarnpkg.com/fast-deep-equal/-/fast-deep-equal-3.1.1.tgz#545145077c501491e33b15ec408c294376e94ae4"
48454845
integrity sha512-8UEa58QDLauDNfpbrX55Q9jrGHThw2ZMdOky5Gl1CDtVeJDPVrG4Jxx1N8jw2gkWaff5UUuX1KJd+9zGe2B+ZA==
48464846

4847-
fast-glob@^3.1.1, fast-glob@^3.2.2:
4847+
fast-glob@^3.1.1:
48484848
version "3.2.2"
48494849
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.2.tgz#ade1a9d91148965d4bf7c51f72e1ca662d32e63d"
48504850
integrity sha512-UDV82o4uQyljznxwMxyVRJgZZt3O5wENYojjzbaGEGZgeOxkLFf+V4cnUD+krzb2F72E18RhamkMZ7AdeggF7A==
@@ -4856,6 +4856,18 @@ fast-glob@^3.1.1, fast-glob@^3.2.2:
48564856
micromatch "^4.0.2"
48574857
picomatch "^2.2.1"
48584858

4859+
fast-glob@^3.2.4:
4860+
version "3.2.4"
4861+
resolved "https://registry.yarnpkg.com/fast-glob/-/fast-glob-3.2.4.tgz#d20aefbf99579383e7f3cc66529158c9b98554d3"
4862+
integrity sha512-kr/Oo6PX51265qeuCYsyGypiO5uJFgBS0jksyG7FUeCyQzNwYnzrNIMR1NXfkZXsMYXYLRAHgISHBz8gQcxKHQ==
4863+
dependencies:
4864+
"@nodelib/fs.stat" "^2.0.2"
4865+
"@nodelib/fs.walk" "^1.2.3"
4866+
glob-parent "^5.1.0"
4867+
merge2 "^1.3.0"
4868+
micromatch "^4.0.2"
4869+
picomatch "^2.2.1"
4870+
48594871
fast-json-stable-stringify@2.1.0, fast-json-stable-stringify@^2.0.0:
48604872
version "2.1.0"
48614873
resolved "https://registry.yarnpkg.com/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz#874bf69c6f404c2b5d99c481341399fd55892633"
@@ -8499,6 +8511,13 @@ p-limit@^2.0.0, p-limit@^2.2.0, p-limit@^2.3.0:
84998511
dependencies:
85008512
p-try "^2.0.0"
85018513

8514+
p-limit@^3.0.1:
8515+
version "3.0.1"
8516+
resolved "https://registry.yarnpkg.com/p-limit/-/p-limit-3.0.1.tgz#584784ac0722d1aed09f19f90ed2999af6ce2839"
8517+
integrity sha512-mw/p92EyOzl2MhauKodw54Rx5ZK4624rNfgNaBguFZkHzyUG9WsDzFF5/yQVEJinbJDdP4jEfMN+uBquiGnaLg==
8518+
dependencies:
8519+
p-try "^2.0.0"
8520+
85028521
p-locate@^2.0.0:
85038522
version "2.0.0"
85048523
resolved "https://registry.yarnpkg.com/p-locate/-/p-locate-2.0.0.tgz#20a0103b222a70c8fd39cc2e580680f3dde5ec43"
@@ -10399,6 +10418,13 @@ serialize-javascript@^3.1.0:
1039910418
dependencies:
1040010419
randombytes "^2.1.0"
1040110420

10421+
serialize-javascript@^4.0.0:
10422+
version "4.0.0"
10423+
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-4.0.0.tgz#b525e1238489a5ecfc42afacc3fe99e666f4b1aa"
10424+
integrity sha512-GaNA54380uFefWghODBWEGisLZFj00nS5ACs6yHa9nLqlLpVLO8ChDGeKRjZnV4Nh4n0Qi7nhYZD/9fCPzEqkw==
10425+
dependencies:
10426+
randombytes "^2.1.0"
10427+
1040210428
serve-index@^1.9.1:
1040310429
version "1.9.1"
1040410430
resolved "https://registry.yarnpkg.com/serve-index/-/serve-index-1.9.1.tgz#d3768d69b1e7d82e5ce050fff5b453bea12a9239"

0 commit comments

Comments
 (0)
Please sign in to comment.