Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for using custom error message #29

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,8 @@ new DuplicatePackageCheckerPlugin({
emitError: true,
// Show help message if duplicate packages are found (default: true)
showHelp: false,
// A custom help message (default: null)
helpMessage: "Check http://foo.bar.com/baz for more details how to update pacakges",
// Warn also if major versions differ (default: true)
strict: false,
/**
Expand Down
14 changes: 10 additions & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ const defaults = {
showHelp: true,
emitError: false,
exclude: null,
strict: true
strict: true,
helpMessage: null
};

function DuplicatePackageCheckerPlugin(options) {
Expand Down Expand Up @@ -53,6 +54,7 @@ DuplicatePackageCheckerPlugin.prototype.apply = function(compiler) {
let emitError = this.options.emitError;
let exclude = this.options.exclude;
let strict = this.options.strict;
let helpMessage = this.options.helpMessage;

compiler.hooks.emit.tapAsync("DuplicatePackageCheckerPlugin", function(
compilation,
Expand Down Expand Up @@ -186,9 +188,13 @@ DuplicatePackageCheckerPlugin.prototype.apply = function(compiler) {
error += ` ${instances.join("\n ")}\n`;
// only on last warning
if (showHelp && ++i === duplicateCount) {
error += `\n${chalk.white.bold(
"Check how you can resolve duplicate packages: "
)}\nhttps://github.com/darrenscerri/duplicate-package-checker-webpack-plugin#resolving-duplicate-packages-in-your-bundle\n`;
if (helpMessage) {
error += `\n${helpMessage}\n`;
} else {
error += `\n${chalk.white.bold(
"Check how you can resolve duplicate packages: "
)}\nhttps://github.com/darrenscerri/duplicate-package-checker-webpack-plugin#resolving-duplicate-packages-in-your-bundle\n`;
}
}
array.push(new Error(error));
});
Expand Down
18 changes: 18 additions & 0 deletions test/simple/__snapshots__/index.test.js.snap
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,24 @@ https://github.com/darrenscerri/duplicate-package-checker-webpack-plugin#resolvi
"
`;

exports[`Simple dependency tree should output custom help message 1`] = `
"a
 Multiple versions of a found:
 1.0.0 ./~/a
2.0.0 ./~/b/~/a
"
`;

exports[`Simple dependency tree should output custom help message 2`] = `
"b
 Multiple versions of b found:
 1.0.0 ./~/b
2.0.0 ./~/c/~/d/~/b

Check http://foo.bar.com/baz for more details
"
`;

exports[`Simple dependency tree should output errors 1`] = `
"a
 Multiple versions of a found:
Expand Down
14 changes: 14 additions & 0 deletions test/simple/index.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,20 @@ describe("Simple dependency tree", function() {
});
});

it("should output custom help message", function(done) {
webpack(
MakeConfig({
emitError: true,
helpMessage: "Check http://foo.bar.com/baz for more details"
}),
function(err, stats) {
expect(stats.compilation.errors[0].message).toMatchSnapshot();
expect(stats.compilation.errors[1].message).toMatchSnapshot();
done();
}
);
});

it("should output errors in production mode", function(done) {
webpack(MakeConfig({ emitError: true }, "production"), function(
err,
Expand Down