I have an angular workspace with the structure below
- AngularProject
- projects
- lib1
- lib
- package.json
- src
- app
- package.json
lib1 is a package that is to be published to npm.
I want to use the standard-version npm package to automate versioning in this project. Is there a way the
standard-version
CLI command can update the version in the package.json
files in both the root directory and the lib1 directory.
I have tried using the standard-version
CLI command but it only updates the package.json
in the root directory.
Expectation:
The package.json
files in both the root directory and lib1 directory should be updated using standard-version