@akanjs/devkit 0.9.9 → 0.9.10

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.9",
3
+ "version": "0.9.10",
4
4
  "sourceType": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -102,7 +102,7 @@ export declare class WorkspaceExecutor extends Executor {
102
102
  getBaseDevEnv(): {
103
103
  repoName: string;
104
104
  serveDomain: string;
105
- env: "testing" | "local" | "debug" | "develop" | "main";
105
+ env: "debug" | "testing" | "local" | "develop" | "main";
106
106
  name?: string | undefined;
107
107
  };
108
108
  scan(): Promise<WorkspaceScanResult>;
@@ -215,7 +215,7 @@ export declare class AppExecutor extends SysExecutor {
215
215
  emoji: string;
216
216
  constructor({ workspace, name }: AppExecutorOptions);
217
217
  static from(executor: SysExecutor | WorkspaceExecutor, name: string): AppExecutor;
218
- getEnv(): "testing" | "local" | "debug" | "develop" | "main";
218
+ getEnv(): "debug" | "testing" | "local" | "develop" | "main";
219
219
  getConfig(command?: string): Promise<AppConfigResult>;
220
220
  syncAssets(libDeps: string[]): Promise<void>;
221
221
  }