@akanjs/devkit 0.0.118 → 0.0.119

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.
@@ -177,6 +177,7 @@ const runCommands = async (...commands) => {
177
177
  } catch (e) {
178
178
  const errMsg = e instanceof Error ? e.message : typeof e === "string" ? e : JSON.stringify(e);
179
179
  import_common.Logger.error(`Command Error: ${import_chalk.default.red(errMsg)}`);
180
+ console.error(e);
180
181
  }
181
182
  });
182
183
  }
@@ -145,6 +145,7 @@ const runCommands = async (...commands) => {
145
145
  } catch (e) {
146
146
  const errMsg = e instanceof Error ? e.message : typeof e === "string" ? e : JSON.stringify(e);
147
147
  Logger.error(`Command Error: ${chalk.red(errMsg)}`);
148
+ console.error(e);
148
149
  }
149
150
  });
150
151
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "0.0.118",
3
+ "version": "0.0.119",
4
4
  "sourceType": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -52,7 +52,7 @@ export declare class WorkspaceExecutor extends Executor {
52
52
  getBaseDevEnv(): {
53
53
  repoName: string;
54
54
  serveDomain: string;
55
- env: "debug" | "testing" | "local" | "develop" | "main";
55
+ env: "testing" | "local" | "debug" | "develop" | "main";
56
56
  name?: string | undefined;
57
57
  };
58
58
  scan(): Promise<WorkspaceScanResult>;
package/src/types.d.ts CHANGED
@@ -20,4 +20,7 @@ export interface TsConfigJson {
20
20
  target: string;
21
21
  paths: Record<string, string[]>;
22
22
  };
23
+ references?: {
24
+ path: string;
25
+ }[];
23
26
  }