mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:41:07 +08:00
fix(angular): intentionally never complete start builder, leaving the process running
This commit is contained in:
parent
ded597cb8c
commit
4f95e5b363
@ -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)
|
||||||
|
);
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user