@akanjs/cli 1.0.20 → 1.0.21

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/README.md CHANGED
@@ -1,9 +1,3 @@
1
- > 🎉 **Akanjs v2 has been released!**
2
- >
3
- > This package is under maintenance for existing users, but we recommend using Akanjs v2 for new projects.
4
- >
5
- > For the unified and latest version package, please visit [akanjs](https://www.npmjs.com/package/akanjs).
6
-
7
1
  # ⚡ Akan.js CLI
8
2
 
9
3
  The official command-line interface for the Akan.js ecosystem, providing powerful development tools for creating, managing, and deploying modern web applications with ease.
package/cjs/index.js CHANGED
@@ -6142,7 +6142,7 @@ ${import_chalk7.default.green("\u27A4")} Authentication Required`));
6142
6142
  await Promise.all(
6143
6143
  akanPkgs.map(async (library) => {
6144
6144
  Logger.info(`Publishing ${library}@${nextVersion} to npm...`);
6145
- await workspace.exec(`npm publish --tag ${tag}`, { cwd: `dist/pkgs/${library}` });
6145
+ await workspace.exec(`npm publish --tag akan-1`, { cwd: `dist/pkgs/${library}` });
6146
6146
  Logger.info(`${library}@${nextVersion} is published to npm`);
6147
6147
  })
6148
6148
  );
package/esm/index.js CHANGED
@@ -6123,7 +6123,7 @@ ${chalk7.green("\u27A4")} Authentication Required`));
6123
6123
  await Promise.all(
6124
6124
  akanPkgs.map(async (library) => {
6125
6125
  Logger.info(`Publishing ${library}@${nextVersion} to npm...`);
6126
- await workspace.exec(`npm publish --tag ${tag}`, { cwd: `dist/pkgs/${library}` });
6126
+ await workspace.exec(`npm publish --tag akan-1`, { cwd: `dist/pkgs/${library}` });
6127
6127
  Logger.info(`${library}@${nextVersion} is published to npm`);
6128
6128
  })
6129
6129
  );
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "type": "module",
3
3
  "sourceType": "module",
4
4
  "name": "@akanjs/cli",
5
- "version": "1.0.20",
5
+ "version": "1.0.21",
6
6
  "bin": {
7
7
  "akan": "esm/index.js"
8
8
  },