@akanjs/devkit 0.0.131 → 0.0.132
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/cjs/src/executors.js +1 -1
- package/esm/src/executors.js +1 -1
- package/package.json +1 -1
package/cjs/src/executors.js
CHANGED
|
@@ -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(
|
|
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 });
|
package/esm/src/executors.js
CHANGED
|
@@ -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(
|
|
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 });
|