UNPKG

webpack-clean

Version:

A webpack plugin to clean specified files after build

18 lines (17 loc) 355 B
module.exports = function () { return { files: [ { pattern: '**/*.js', load: true }, { pattern: 'test/**/*.js', ignore: true }, { pattern: 'node_modules/**/*', ignore: true } ], tests: [ 'test/**/*test.js' ], env: { type: 'node' }, testFramework: 'ava', debug: true }; };