Skip to content

Commit

Permalink
fix: use compiler.apply for Progress Plugin (#1772)
Browse files Browse the repository at this point in the history
* fix: use default webpack handler

* chore: update tests

Co-authored-by: James George <jamesgeorge998001@gmail.com>
  • Loading branch information
rishabh3112 and jamesgeorge007 committed Aug 27, 2020
1 parent 0110815 commit e8f2f20
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 28 deletions.
27 changes: 2 additions & 25 deletions packages/webpack-cli/lib/utils/Compiler.js
@@ -1,8 +1,6 @@
const webpack = require('webpack');
const logger = require('./logger');
const { cyanBright, greenBright } = require('colorette');
const { CompilerOutput } = require('./CompilerOutput');
const readline = require('readline');

class Compiler {
constructor() {
Expand All @@ -18,36 +16,15 @@ class Compiler {

compilation.hooks.beforeRun.tap('webpackProgress', () => {
if (outputOptions.progress) {
process.stdout.write('\n');
const defaultProgressPluginHandler = (percent, msg) => {
percent = Math.floor(percent * 100);
readline.clearLine(process.stdout, 0);
readline.cursorTo(process.stdout, 0, null);
if (percent !== undefined) {
process.stdout.write(' (');
for (let i = 0; i <= 100; i += 10) {
if (i <= percent) {
process.stdout.write(greenBright('#'));
} else {
process.stdout.write('#');
}
}
process.stdout.write(`) ${percent}% : `);
process.stdout.write(`${cyanBright(msg)}`);
if (percent === 100) {
process.stdout.write(`${cyanBright('Compilation completed\n')}`);
}
}
};
if (!progressPluginExists) {
new ProgressPlugin(defaultProgressPluginHandler).apply(compilation);
new ProgressPlugin().apply(compilation);
} else {
if (!progressPluginExists.handler) {
options.plugins = options.plugins.filter((e) => e !== progressPluginExists);
Object.keys(progressPluginExists).map((opt) => {
ProgressPlugin.defaultOptions[opt] = progressPluginExists[opt];
});
new ProgressPlugin(defaultProgressPluginHandler).apply(compilation);
new ProgressPlugin().apply(compilation);
} else {
progressPluginExists.apply(compilation);
}
Expand Down
5 changes: 2 additions & 3 deletions test/progress/progress-flag.test.js
Expand Up @@ -6,8 +6,7 @@ const { run } = require('../utils/test-utils');
describe('progress flag', () => {
it('should show progress', () => {
const { stderr, stdout } = run(__dirname, ['--progress']);
expect(stderr).toBeFalsy();
expect(stdout).toContain('100%');
expect(stdout).toContain('Compilation completed');
expect(stderr).toContain('[webpack.Progress] 100%');
expect(stdout).toContain('main.js');
});
});

0 comments on commit e8f2f20

Please sign in to comment.