Skip to content
This repository was archived by the owner on Dec 5, 2019. It is now read-only.

Commit 68ad71c

Browse files
authoredDec 27, 2018
fix: don't crash when no extracted comments (#387)
1 parent e3eff76 commit 68ad71c

File tree

3 files changed

+50
-1
lines changed

3 files changed

+50
-1
lines changed
 

‎src/index.js

+5-1
Original file line numberDiff line numberDiff line change
@@ -306,7 +306,11 @@ class UglifyJsPlugin {
306306
}
307307

308308
// Write extracted comments to commentsFile
309-
if (commentsFile && extractedComments.length > 0) {
309+
if (
310+
commentsFile &&
311+
extractedComments &&
312+
extractedComments.length > 0
313+
) {
310314
if (commentsFile in compilation.assets) {
311315
const commentsFileSource = compilation.assets[
312316
commentsFile

‎test/__snapshots__/minify-option.test.js.snap

+6
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,12 @@ exports[`when applied with \`minify\` option matches snapshot for \`terser\` min
183183

184184
exports[`when applied with \`minify\` option matches snapshot for \`terser\` minifier: warnings 1`] = `Array []`;
185185

186+
exports[`when applied with \`minify\` option matches snapshot for \`uglify-js\` minifier while extracting comments: errors 1`] = `Array []`;
187+
188+
exports[`when applied with \`minify\` option matches snapshot for \`uglify-js\` minifier while extracting comments: main.js 1`] = `"!function(e){var t={};function n(r){if(t[r])return t[r].exports;var o=t[r]={i:r,l:!1,exports:{}};return e[r].call(o.exports,o,o.exports,n),o.l=!0,o.exports}n.m=e,n.c=t,n.d=function(e,t,r){n.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},n.r=function(e){\\"undefined\\"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:\\"Module\\"}),Object.defineProperty(e,\\"__esModule\\",{value:!0})},n.t=function(e,t){if(1&t&&(e=n(e)),8&t)return e;if(4&t&&\\"object\\"==typeof e&&e&&e.__esModule)return e;var r=Object.create(null);if(n.r(r),Object.defineProperty(r,\\"default\\",{enumerable:!0,value:e}),2&t&&\\"string\\"!=typeof e)for(var o in e)n.d(r,o,function(t){return e[t]}.bind(null,o));return r},n.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return n.d(t,\\"a\\",t),t},n.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},n.p=\\"\\",n(n.s=0)}([function(e,t){e.exports=function(){var baz=document.getElementById(\\"root\\").innerHTML;document.getElementById(\\"demo\\").innerHTML=\\"Paragraph changed.\\"+baz}}]);"`;
189+
190+
exports[`when applied with \`minify\` option matches snapshot for \`uglify-js\` minifier while extracting comments: warnings 1`] = `Array []`;
191+
186192
exports[`when applied with \`minify\` option matches snapshot for errors into \`minify\` option and \`parallel\` is \`true\`: errors 1`] = `
187193
Array [
188194
"Error: main.js from UglifyJs

‎test/minify-option.test.js

+39
Original file line numberDiff line numberDiff line change
@@ -212,4 +212,43 @@ describe('when applied with `minify` option', () => {
212212
}
213213
});
214214
});
215+
216+
it('matches snapshot for `uglify-js` minifier while extracting comments', () => {
217+
const compiler = createCompiler({
218+
entry: `${__dirname}/fixtures/minify/es5.js`,
219+
output: {
220+
path: `${__dirname}/dist-uglify-js`,
221+
filename: '[name].js',
222+
chunkFilename: '[id].[name].js',
223+
},
224+
});
225+
226+
new UglifyJsPlugin({
227+
extractComments: true,
228+
minify(file) {
229+
// eslint-disable-next-line global-require
230+
return require('terser').minify(file, {
231+
mangle: {
232+
reserved: ['baz'],
233+
},
234+
});
235+
},
236+
}).apply(compiler);
237+
238+
return compile(compiler).then((stats) => {
239+
const errors = stats.compilation.errors.map(cleanErrorStack);
240+
const warnings = stats.compilation.warnings.map(cleanErrorStack);
241+
242+
expect(errors).toMatchSnapshot('errors');
243+
expect(warnings).toMatchSnapshot('warnings');
244+
245+
for (const file in stats.compilation.assets) {
246+
if (
247+
Object.prototype.hasOwnProperty.call(stats.compilation.assets, file)
248+
) {
249+
expect(stats.compilation.assets[file].source()).toMatchSnapshot(file);
250+
}
251+
}
252+
});
253+
});
215254
});

0 commit comments

Comments
 (0)
This repository has been archived.