new version for latest webpack 4.28.x
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
var exec = require('child_process').exec;
|
||||
|
||||
console.log("Installing NPM packages");
|
||||
|
||||
exec('npm install',
|
||||
function (error, stdout, stderr) {
|
||||
if (error !== null) {
|
||||
console.error("ERROR installing NPM packages", error);
|
||||
}
|
||||
else {
|
||||
console.error("Successfully installed NPM packages", stdout, stderr);
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user