gulp-file-checksum
Version:
A gulp plugin for generating checksum file.
19 lines (18 loc) • 453 B
JavaScript
// istanbul ignore file
module.exports = class PluginTemplate {
static get names () {
throw new Error('The "names" property should be overrided!');
}
constructor (file, gulpOptions, placeholder) {
this.file = file;
this.gulpOptions = gulpOptions;
this.placeholder = placeholder;
}
preprocess (template) {}
receiveChunk (chunk) {
// ignore
}
finish () {
return {};
}
};