You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-1Lines changed: 3 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -37,7 +37,7 @@ All you have to do is the versioning of the packages you want to publish.
37
37
38
38
> You need to be on the main branch and have the repo write access to publish a new version.
39
39
40
-
Run `yarn publish` to start the process. It will run the command `yarn lerna version --conventional-commits` which will prompt you to select the packages you want to publish and the version bump for each of them.
40
+
Run `yarn lerna version` to start the process. It will run the command `yarn lerna version --conventional-commits --no-private`.
41
41
42
42
Lerna will prompt you to select the version bump for each package. It will also generate the changelog for each package based on the commit messages since the last version.
43
43
@@ -53,6 +53,8 @@ Changes:
53
53
- @bam.tech/eslint-plugin: 1.0.0 => 1.1.0
54
54
```
55
55
56
+
It will then push a tagged commit `chore(release): Publish` which will then trigger the Github Workflow to publish the new version of each package to NPM.
57
+
56
58
## Running commands
57
59
58
60
-`yarn lerna run start`: run the 'start' script in all packages (currently only present in `example-app`),
0 commit comments