@akanjs/cli 1.0.19 → 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/cjs/index.js +1 -1
- package/esm/index.js +1 -1
- package/package.json +1 -1
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
|
|
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
|
|
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
|
);
|