@akanjs/cli 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.
package/cjs/index.js CHANGED
@@ -1381,7 +1381,7 @@ var SysExecutor = class extends Executor {
1381
1381
  throw new Error(
1382
1382
  `Missing libs: ${missingLibDeps.join(", ")}, add these dependencies in akan.config.ts as { libs: [...other deps, ${missingLibDeps.join(", ")}] }`
1383
1383
  );
1384
- for (const libName of libDeps) {
1384
+ for (const libName of akanConfig.libs) {
1385
1385
  if (libScanResults[libName])
1386
1386
  continue;
1387
1387
  const lib = new LibExecutor({ workspace: this.workspace, name: libName });
package/esm/index.js CHANGED
@@ -1368,7 +1368,7 @@ var SysExecutor = class extends Executor {
1368
1368
  throw new Error(
1369
1369
  `Missing libs: ${missingLibDeps.join(", ")}, add these dependencies in akan.config.ts as { libs: [...other deps, ${missingLibDeps.join(", ")}] }`
1370
1370
  );
1371
- for (const libName of libDeps) {
1371
+ for (const libName of akanConfig.libs) {
1372
1372
  if (libScanResults[libName])
1373
1373
  continue;
1374
1374
  const lib = new LibExecutor({ workspace: this.workspace, name: libName });
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sourceType": "module",
3
3
  "name": "@akanjs/cli",
4
- "version": "0.0.124",
4
+ "version": "0.0.125",
5
5
  "bin": {
6
6
  "akan": "cjs/index.js"
7
7
  },