@akanjs/cli 0.0.36 → 0.0.37
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/index.js +5 -7
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -4329,13 +4329,11 @@ ${import_chalk.default.green("\u27A4")} Authentication Required`));
|
|
|
4329
4329
|
Logger.info("Deployment cancelled");
|
|
4330
4330
|
return;
|
|
4331
4331
|
}
|
|
4332
|
-
|
|
4333
|
-
|
|
4334
|
-
|
|
4335
|
-
|
|
4336
|
-
|
|
4337
|
-
})
|
|
4338
|
-
);
|
|
4332
|
+
for (const library of akanPkgs) {
|
|
4333
|
+
Logger.info(`Publishing ${library}@${nextVersion} to npm...`);
|
|
4334
|
+
await workspace.exec(`npm publish`, { cwd: `dist/pkgs/${library}` });
|
|
4335
|
+
Logger.info(`${library}@${nextVersion} is published to npm`);
|
|
4336
|
+
}
|
|
4339
4337
|
Logger.info("All libraries are published to npm");
|
|
4340
4338
|
}
|
|
4341
4339
|
};
|