When trying to set the version of all work-spaces I have found that only the root workspace change is committed. Steps to reproduce using Angular CLI:
ng new test-workspace --create-application falsecd test-workspaceng generate application test-appgit add --allgit commit -m "Application"ng generate library test-libgit add --allgit commit -m "Library"- Change root-level
package.jsonto include:"workspaces": [ "projects/test-lib" ] git add --allgit commit -m "Workspaces"npm version --workspaces --include-workspace-root true --workspaces-update false 0.0.2
After the final step test-lib/package.json has been changed to the new version but has not been commited.