I recently created a package called https://www.npmjs.com/package/nestjs-notifications
After running
npm install nestjs-notifications --save
, I noticed that it installed successfully but saved the version as:
"nestjs-notifications": "0.0.10"
Is there a way to configure it so it installs with the semantic version like this:
"nestjs-notifications": "^0.0.10".
Currently, I am unable to automatically pick up new versions and have to manually update the package.json file.
Edit: My relevant config settings are set to default (with the caret symbol), which should result in saving with a caret:
save = true
save-bundle = false
save-dev = false
save-exact = false
save-optional = false
save-prefix = "^"
save-prod = false
...