@akanjs/devkit 0.9.29 → 0.9.31

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "0.9.29",
3
+ "version": "0.9.31",
4
4
  "sourceType": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -104,7 +104,7 @@ export declare class WorkspaceExecutor extends Executor {
104
104
  getBaseDevEnv(): {
105
105
  repoName: string;
106
106
  serveDomain: string;
107
- env: "debug" | "testing" | "local" | "develop" | "main";
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(): "debug" | "testing" | "local" | "develop" | "main";
220
+ getEnv(): "testing" | "local" | "debug" | "develop" | "main";
221
221
  getConfig(command?: string): Promise<AppConfigResult>;
222
222
  syncAssets(libDeps: string[]): Promise<void>;
223
223
  }