@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "0.9.36",
3
+ "version": "0.9.37",
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: "testing" | "local" | "debug" | "develop" | "main";
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(): "testing" | "local" | "debug" | "develop" | "main";
221
+ getEnv(): "debug" | "testing" | "local" | "develop" | "main";
222
222
  getConfig(command?: string): Promise<AppConfigResult>;
223
223
  syncAssets(libDeps: string[]): Promise<void>;
224
224
  }