mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-03-24 13:00:18 +01:00
12 lines
279 B
JavaScript
12 lines
279 B
JavaScript
const webpack = require("webpack");
|
|
const createPluginConfig = require("../createPluginConfig");
|
|
|
|
const config = createPluginConfig("development");
|
|
const compiler = webpack(config);
|
|
|
|
compiler.watch({}, (err, stats) => {
|
|
console.log(stats.toString({
|
|
colors: true
|
|
}));
|
|
});
|