I learned that lerna clean wasn't cleaning the node_modules in the root directory as it's not marked as a lerna project, which caused the previous PR to make webpack work (#38) to not work on a fresh machine.
Added the root directory as a lerna project so lerna clean will clean it
Changed my webpack fix. It now requires a script 'npm run setup' to be run before anything (note: it calls lerna bootstrap)
Removed the unused package-lock.json files which are unused since lerna link convert
I learned that
lerna clean
wasn't cleaning the node_modules in the root directory as it's not marked as a lerna project, which caused the previous PR to make webpack work (#38) to not work on a fresh machine.lerna clean
will clean itlerna bootstrap
)package-lock.json
files which are unused sincelerna link convert