modify-image-upload
Version:
上传图片组件(在上传图片时可以对图片进行修改,增加文字、水印、压缩图片质量等)
49 lines (38 loc) • 853 B
JavaScript
const webpack = require('webpack');
const getConfig = require('./webpack.config.js');
webpack(getConfig(), (err, stats) => {
if (err) {
console.error(err.stack || err);
if (err.details) {
console.error(err.details);
}
return;
}
const info = stats.toJson();
if (stats.hasErrors()) {
console.error(info.errors);
}
if (stats.hasWarnings()) {
console.warn(info.warnings);
} else {
console.log('Finished')
}
})
webpack(getConfig('window', 'min'), (err, stats) => {
if (err) {
console.error(err.stack || err);
if (err.details) {
console.error(err.details);
}
return;
}
const info = stats.toJson();
if (stats.hasErrors()) {
console.error(info.errors);
}
if (stats.hasWarnings()) {
console.warn(info.warnings);
} else {
console.log('Finished')
}
})