We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3c7451 commit dacee5bCopy full SHA for dacee5b
src/index.ts
@@ -16,4 +16,4 @@ export * from './resources';
16
export * from './types';
17
export * from './context';
18
export * from './handlers';
19
-export * from './lifecycle';
+export { Lifecycle } from './lifecycle';
src/lifecycle/lifecycle.ts
@@ -16,7 +16,7 @@
const NITRIC_ENVIRONMENT = 'NITRIC_ENVIRONMENT';
// Possible nitric execution environments
-enum LifecycleStage {
+export enum LifecycleStage {
20
// Local development run (using nitric run/start)
21
LocalRun = 'run',
22
// Local development requirements building/collection (using nitric up)
0 commit comments