Skip to content

Commit 90b2cc4

Browse files
committedFeb 10, 2021
Fix use of arrows functions in bundles.
1 parent 980d20a commit 90b2cc4

File tree

3 files changed

+6
-0
lines changed

3 files changed

+6
-0
lines changed
 

‎CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# jsonld ChangeLog
22

3+
### Fixed
4+
- Add `lru-cache` to packages run through babel for bundles. Fixes use of arrow
5+
functions.
6+
37
## 3.3.0 - 2021-01-21
48

59
### Changed

‎karma.conf.js

+1
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ module.exports = function(config) {
8686
// include specific packages
8787
include: [
8888
/(node_modules\/canonicalize)/,
89+
/(node_modules\/lru-cache)/,
8990
/(node_modules\/rdf-canonize)/
9091
]
9192
}],

‎webpack.config.js

+1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ outputs.forEach(info => {
6868
// include specific packages
6969
include: [
7070
/(node_modules\/canonicalize)/,
71+
/(node_modules\/lru-cache)/,
7172
/(node_modules\/rdf-canonize)/
7273
]
7374
}],

0 commit comments

Comments
 (0)
Please sign in to comment.