@akanjs/devkit 0.0.131 → 0.0.133

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.
@@ -550,7 +550,7 @@ class SysExecutor extends Executor {
550
550
  libDeps,
551
551
  pkgDeps,
552
552
  dependencies: [...npmDepSet].filter((dep) => !dep.startsWith("@akanjs")),
553
- libs: Object.fromEntries(libDeps.map((libName) => [libName, libScanResults[libName]]))
553
+ libs: Object.fromEntries(akanConfig.libs.map((libName) => [libName, libScanResults[libName]]))
554
554
  };
555
555
  await this.applyTemplate({ basePath: "lib", template: "lib", scanResult });
556
556
  await this.applyTemplate({ basePath: ".", template: "server.ts", scanResult });
@@ -517,7 +517,7 @@ class SysExecutor extends Executor {
517
517
  libDeps,
518
518
  pkgDeps,
519
519
  dependencies: [...npmDepSet].filter((dep) => !dep.startsWith("@akanjs")),
520
- libs: Object.fromEntries(libDeps.map((libName) => [libName, libScanResults[libName]]))
520
+ libs: Object.fromEntries(akanConfig.libs.map((libName) => [libName, libScanResults[libName]]))
521
521
  };
522
522
  await this.applyTemplate({ basePath: "lib", template: "lib", scanResult });
523
523
  await this.applyTemplate({ basePath: ".", template: "server.ts", scanResult });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "0.0.131",
3
+ "version": "0.0.133",
4
4
  "sourceType": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -53,7 +53,7 @@ export declare class WorkspaceExecutor extends Executor {
53
53
  getBaseDevEnv(): {
54
54
  repoName: string;
55
55
  serveDomain: string;
56
- env: "debug" | "testing" | "local" | "develop" | "main";
56
+ env: "testing" | "local" | "debug" | "develop" | "main";
57
57
  name?: string | undefined;
58
58
  };
59
59
  scan(): Promise<WorkspaceScanResult>;