File: 2003_fix_paths.patch

package info (click to toggle)
node-rdf-canonize 1.2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 328 kB
  • sloc: javascript: 2,218; makefile: 15; sh: 1
file content (20 lines) | stat: -rw-r--r-- 565 bytes parent folder | download
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'
     ],