Skip to content
This repository was archived by the owner on Feb 18, 2024. It is now read-only.

Add new shorthands from resolve and output #37

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Output.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ module.exports = class extends ChainedMap {
'crossOriginLoading',
'filename',
'library',
'libraryExport',
'libraryTarget',
'devtoolFallbackModuleFilenameTemplate',
'devtoolLineToLine',
Expand Down
5 changes: 3 additions & 2 deletions src/Resolve.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,12 @@ module.exports = class extends ChainedMap {
this.modules = new ChainedSet(this);
this.plugins = new ChainedMap(this);
this.extend([
'cachePredicate',
'cacheWithContext',
'enforceExtension',
'enforceModuleExtension',
'unsafeCache',
'symlinks',
'cachePredicate'
'symlinks'
]);
}

Expand Down