fix(angular): intentionally never complete start builder, leaving the process running

This commit is contained in:
ThibaudAv 2021-06-10 09:20:00 +02:00
parent ded597cb8c
commit 4f95e5b363

View File

@ -77,5 +77,11 @@ async function setup(options: StorybookBuilderOptions, context: BuilderContext)
} }
function runInstance(options: StandaloneOptions) { function runInstance(options: StandaloneOptions) {
return from(buildStandalone(options)); return new Observable<void>((observer) => {
// This Observable intentionally never complete, leaving the process running ;)
buildStandalone(options).then(
() => observer.next(),
(error) => observer.error(error)
);
});
} }