Skip to content

Commit b22389c

Browse files
committed
fix(webpack): fix missing analyze
1 parent a5896af commit b22389c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

webpack/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ const postcssLoader = {
3838
}
3939
};
4040

41-
module.exports = function(env/* @if jasmine || tape || mocha*/, { runTest, analyze }/* @endif */) {
41+
module.exports = function(env, { /* @if jasmine || tape || mocha*/runTest, /* @endif */analyze }) {
4242
const production = env === 'production' || process.env.NODE_ENV === 'production';
4343
// @if jasmine || tape || mocha
4444
const test = env === 'test' || process.env.NODE_ENV === 'test';

0 commit comments

Comments
 (0)