1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
Description: Fix core-js paths
Author: Jonas Smedegaard <dr@jones.dk>
Last-Update: 2020-05-09
---
This patch header follows DEP-3: http://dep.debian.net/deps/dep3/
--- a/webpack.config.js
+++ b/webpack.config.js
@@ -19,9 +19,9 @@
{
entry: [
// 'babel-polyfill' is very large, list features explicitly
- 'core-js/fn/object/assign',
- 'core-js/fn/promise',
- 'core-js/fn/symbol',
+ 'core-js/features/object/assign',
+ 'core-js/features/promise',
+ 'core-js/features/symbol',
// main lib
'./index.js'
],
|