@akanjs/devkit 0.0.124 → 0.0.125

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.
@@ -521,7 +521,7 @@ class SysExecutor extends Executor {
521
521
  throw new Error(
522
522
  `Missing libs: ${missingLibDeps.join(", ")}, add these dependencies in akan.config.ts as { libs: [...other deps, ${missingLibDeps.join(", ")}] }`
523
523
  );
524
- for (const libName of libDeps) {
524
+ for (const libName of akanConfig.libs) {
525
525
  if (libScanResults[libName])
526
526
  continue;
527
527
  const lib = new LibExecutor({ workspace: this.workspace, name: libName });
@@ -488,7 +488,7 @@ class SysExecutor extends Executor {
488
488
  throw new Error(
489
489
  `Missing libs: ${missingLibDeps.join(", ")}, add these dependencies in akan.config.ts as { libs: [...other deps, ${missingLibDeps.join(", ")}] }`
490
490
  );
491
- for (const libName of libDeps) {
491
+ for (const libName of akanConfig.libs) {
492
492
  if (libScanResults[libName])
493
493
  continue;
494
494
  const lib = new LibExecutor({ workspace: this.workspace, name: libName });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@akanjs/devkit",
3
- "version": "0.0.124",
3
+ "version": "0.0.125",
4
4
  "sourceType": "module",
5
5
  "publishConfig": {
6
6
  "access": "public"