svg-spritemap-webpack-plugin
Version:
Generates symbol-based SVG spritemap from all .svg files in a directory
16 lines (12 loc) • 451 B
JavaScript
const WebpackError = require('webpack/lib/WebpackError');
module.exports = class NoSourceFilesWarning extends WebpackError {
constructor(pattern) {
super();
this.name = 'NoSourceFilesWarning';
this.message = [
require('../../package.json').name,
`No source files match the patterns: '${pattern.join(', ')}'`
].join('\n');
Error.captureStackTrace(this, this.constructor);
}
};