@akanjs/cli 0.0.140 → 0.0.141
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
|
@@ -5449,7 +5449,7 @@ ${import_chalk4.default.green("\u27A4")} Authentication Required`));
|
|
|
5449
5449
|
async getAkanPkgs(workspace) {
|
|
5450
5450
|
const pkgs = await workspace.getPkgs();
|
|
5451
5451
|
const akanPkgs = pkgs.filter((pkg) => pkg.startsWith("@akanjs/"));
|
|
5452
|
-
return akanPkgs;
|
|
5452
|
+
return [...akanPkgs, "create-akan-workspace"];
|
|
5453
5453
|
}
|
|
5454
5454
|
async deployAkan(workspace, akanPkgs) {
|
|
5455
5455
|
const basePackageJson = workspace.readJson("pkgs/@akanjs/base/package.json");
|
package/esm/index.js
CHANGED
|
@@ -5436,7 +5436,7 @@ ${chalk4.green("\u27A4")} Authentication Required`));
|
|
|
5436
5436
|
async getAkanPkgs(workspace) {
|
|
5437
5437
|
const pkgs = await workspace.getPkgs();
|
|
5438
5438
|
const akanPkgs = pkgs.filter((pkg) => pkg.startsWith("@akanjs/"));
|
|
5439
|
-
return akanPkgs;
|
|
5439
|
+
return [...akanPkgs, "create-akan-workspace"];
|
|
5440
5440
|
}
|
|
5441
5441
|
async deployAkan(workspace, akanPkgs) {
|
|
5442
5442
|
const basePackageJson = workspace.readJson("pkgs/@akanjs/base/package.json");
|