@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 +1 -1
- package/esm/index.js +1 -1
- package/package.json +1 -1
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
|
|
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
|
|
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 });
|