@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.
Files changed (2) hide show
  1. package/index.js +5 -7
  2. 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
- await Promise.all(
4333
- akanPkgs.map(async (library) => {
4334
- Logger.info(`Publishing ${library}@${nextVersion} to npm...`);
4335
- await workspace.exec(`npm publish`, { cwd: `dist/pkgs/${library}` });
4336
- Logger.info(`${library}@${nextVersion} is published to npm`);
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
  };
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "commonjs",
3
3
  "name": "@akanjs/cli",
4
- "version": "0.0.36",
4
+ "version": "0.0.37",
5
5
  "bin": {
6
6
  "akan": "index.js"
7
7
  },