diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 7871c83..b85a9c0 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -162,14 +162,14 @@ node-plugin/ If you are on powershell and have [ripgrep](https://github.com/BurntSushi/ripgrep) installed: ```pwsh $CAL_NODE_VERSION = rg '^.*\"version\"\:\s*\"(?[0-9]{1,}\.[0-9]{1,}\.[0-9]{1,})\".*$' .\package.json -r '$version' - git tag -s "v$CAL_NODE_VERSION" + git tag -s "v$CAL_NODE_VERSION" -m "Release v$CAL_NODE_VERSION" git push origin "v$CAL_NODE_VERSION" ``` Or on bash: ```bash CAL_NODE_VERSION=$(grep -o '"version": "[0-9]\+\.[0-9]\+\.[0-9]\+"' package.json | grep -o '[0-9]\+\.[0-9]\+\.[0-9]\+') - git tag -s "v$CAL_NODE_VERSION" + git tag -s "v$CAL_NODE_VERSION" -m "Release v$CAL_NODE_VERSION" git push origin "v$CAL_NODE_VERSION" ```