Skip to content
This repository has been archived by the owner on Feb 18, 2024. It is now read-only.

Commit

Permalink
Add custom initialiser to account for upstream change
Browse files Browse the repository at this point in the history
  • Loading branch information
edmorley committed Jun 9, 2019
1 parent 15c8a7a commit 423977b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/clean/index.js
Expand Up @@ -6,5 +6,6 @@ module.exports = ({ pluginId = 'clean', ...opts } = {}) => neutrino => {

neutrino.config
.plugin(pluginId)
.use(require.resolve('clean-webpack-plugin'), [options]);
.use(require.resolve('clean-webpack-plugin'), [options])
.init((Plugin, args) => new Plugin.CleanWebpackPlugin(...args));
};

0 comments on commit 423977b

Please sign in to comment.