mirror of https://github.com/embarklabs/embark.git
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:
parent
897aa3f839
commit
0c9b917371
|
@ -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 });
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue