Skip to content

Commit 8a047a3

Browse files
committed
chore(webpack): remove unused html-beautify external
1 parent 74b9417 commit 8a047a3

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

webpack.config.js

+2-3
Original file line numberDiff line numberDiff line change
@@ -187,15 +187,14 @@ if (__TEST__ || argv.localModules) {
187187
})
188188

189189
// find them on the window
190-
webpackConfig.externals = {
190+
webpackConfig.externals = Object.assign({}, webpackConfig.externals, {
191191
faker: 'faker',
192192
'anchor-js': 'AnchorJS',
193193
'babel-standalone': 'Babel',
194194
react: 'React',
195195
'react-dom': 'ReactDOM',
196196
'react-dom/server': 'ReactDOMServer',
197-
'html-beautify': 'html_beautify',
198-
}
197+
})
199198
}
200199

201200
module.exports = webpackConfig

0 commit comments

Comments
 (0)