@akanjs/devkit 0.9.36 → 0.9.37
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/executors.d.ts +2 -2
package/package.json
CHANGED
package/src/executors.d.ts
CHANGED
|
@@ -104,7 +104,7 @@ export declare class WorkspaceExecutor extends Executor {
|
|
|
104
104
|
getBaseDevEnv(): {
|
|
105
105
|
repoName: string;
|
|
106
106
|
serveDomain: string;
|
|
107
|
-
env: "
|
|
107
|
+
env: "debug" | "testing" | "local" | "develop" | "main";
|
|
108
108
|
portOffset: number;
|
|
109
109
|
name?: string | undefined;
|
|
110
110
|
};
|
|
@@ -218,7 +218,7 @@ export declare class AppExecutor extends SysExecutor {
|
|
|
218
218
|
emoji: string;
|
|
219
219
|
constructor({ workspace, name }: AppExecutorOptions);
|
|
220
220
|
static from(executor: SysExecutor | WorkspaceExecutor, name: string): AppExecutor;
|
|
221
|
-
getEnv(): "
|
|
221
|
+
getEnv(): "debug" | "testing" | "local" | "develop" | "main";
|
|
222
222
|
getConfig(command?: string): Promise<AppConfigResult>;
|
|
223
223
|
syncAssets(libDeps: string[]): Promise<void>;
|
|
224
224
|
}
|