@akanjs/cli 0.0.35 → 0.0.36

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