Set 'buildingInProgress' to false after successful config build to not lock other builds

- Log build in progress to console
- webpack, not weebpack, weebs!
- Add yarn.lock
This commit is contained in:
d0p3t
2021-01-13 20:45:09 +01:00
parent 88f4f974b8
commit e2fe323d88
3 changed files with 2330 additions and 2328 deletions

View File

@@ -1,4 +1,4 @@
const weebpack = require('webpack');
const webpack = require('webpack');
const path = require('path');
const fs = require('fs');
@@ -59,7 +59,7 @@ module.exports = (inp, callback) => {
config.plugins.push(new SaveStatePlugin(inp));
weebpack(config, (err, stats) => {
webpack(config, (err, stats) => {
if (err) {
callback(err);
return;