@akanjs/devkit 0.9.29 → 0.9.30
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: "testing" | "local" | "debug" | "develop" | "main";
|
|
108
108
|
name?: string | undefined;
|
|
109
109
|
};
|
|
110
110
|
scan(): Promise<WorkspaceScanResult>;
|
|
@@ -217,7 +217,7 @@ export declare class AppExecutor extends SysExecutor {
|
|
|
217
217
|
emoji: string;
|
|
218
218
|
constructor({ workspace, name }: AppExecutorOptions);
|
|
219
219
|
static from(executor: SysExecutor | WorkspaceExecutor, name: string): AppExecutor;
|
|
220
|
-
getEnv(): "
|
|
220
|
+
getEnv(): "testing" | "local" | "debug" | "develop" | "main";
|
|
221
221
|
getConfig(command?: string): Promise<AppConfigResult>;
|
|
222
222
|
syncAssets(libDeps: string[]): Promise<void>;
|
|
223
223
|
}
|