We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0e789b3 commit 3d8d4d5Copy full SHA for 3d8d4d5
README.md
@@ -253,14 +253,18 @@ yarn test
253
npx lerna publish --conventional-commits --dist-tag next --otp <one-time password>
254
```
255
256
+If for some reason this stops in between, you can manually publish missing packages like this:
257
+
258
+```
259
+npm publish <package-name> --tag next --otp <one-time password>
260
261
262
##### Move `next` to `latest`
263
264
```sh
265
npm login
266
267
-Move next to latest:
-
268
269
npx lerna exec --no-bail --no-private --no-sort --stream -- '[ -n "$(npm v . dist-tags.next)" ] && npm dist-tag add ${LERNA_PACKAGE_NAME}@$(npm v . dist-tags.next) latest --otp <one-time password>'
270
0 commit comments