fix(@embark/cmd_controller): don't try to load pipeline module group in build cmd

We've made the `basic-pipeline` optional in 948956ab1f but are still
trying to load the pipeline module group in inside the `build` cmd.
This breaks at runtime as no such module group exists anymore.
This commit is contained in:
Pascal Precht 2020-03-18 11:45:08 +01:00 committed by Pascal Precht
parent 897aa3f839
commit 0c9b917371
1 changed files with 0 additions and 1 deletions

View File

@ -303,7 +303,6 @@ class EmbarkController {
if (!options.onlyCompile) {
engine.registerModulePackage('embark-ganache');
engine.registerModuleGroup("pipeline");
engine.registerModuleGroup("namesystem");
engine.registerModulePackage('embark-deploy-tracker', { plugins: engine.plugins });
}