Skip to content

Commit ae92120

Browse files
committed
fixup! build: bump core-js from 2.6.10 to 3.8.2
1 parent 0fa10a4 commit ae92120

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

src/dev-app/BUILD.bazel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ filegroup(
165165
"@npm//:node_modules/@material/textfield/dist/mdc.textfield.js",
166166
"@npm//:node_modules/@material/top-app-bar/dist/mdc.topAppBar.js",
167167
"@npm//:node_modules/@webcomponents/custom-elements/custom-elements.min.js",
168-
"@npm//:node_modules/core-js/client/core.js",
168+
"@npm//:node_modules/core-js/index.js",
169169
"@npm//:node_modules/moment/min/moment-with-locales.min.js",
170170
"@npm//:node_modules/rxjs/bundles/rxjs.umd.min.js",
171171
"@npm//:node_modules/systemjs/dist/system.js",

src/dev-app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
<body>
2626
<dev-app>Loading...</dev-app>
2727

28-
<script src="core-js/client/core.js"></script>
28+
<script src="core-js/index.js"></script>
2929
<script src="zone.js/dist/zone.js"></script>
3030
<script src="systemjs/dist/system.js"></script>
3131
<script src="system-config.js"></script>

src/e2e-app/index.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<span class="sibling">I am a sibling!</span>
2929

3030
<!-- Static scripts which are not imported through AMD nor part of the ConcatJS bundle. -->
31-
<script src="core-js/client/core.min.js"></script>
31+
<script src="core-js/index.js"></script>
3232
<script src="zone.js/dist/zone.min.js"></script>
3333
<script src="kagekiri/dist/kagekiri.umd.min.js"></script>
3434

test/karma.conf.js

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,7 @@ module.exports = config => {
2828
}
2929
],
3030
files: [
31-
{pattern: 'node_modules/core-js/client/core.min.js', included: true, watched: false},
32-
{pattern: 'node_modules/core-js/client/core.min.js.map', included: false, watched: false},
31+
{pattern: 'node_modules/core-js/index.js', included: true, watched: false},
3332
{pattern: 'node_modules/tslib/tslib.js', included: false, watched: false},
3433
{pattern: 'node_modules/systemjs/dist/system.js', included: true, watched: false},
3534
{pattern: 'node_modules/systemjs/dist/system.js.map', included: false, watched: false},

0 commit comments

Comments
 (0)