We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 286102e commit 3c01b01Copy full SHA for 3c01b01
packages/raven-js/scripts/deploy.js
@@ -203,12 +203,12 @@ function runBuild() {
203
}
204
205
function commitChanges(nextVersion) {
206
- execCommand(`git add -A && git commit -am "${nextVersion}"`);
+ execCommand(`git add -A && git commit -am "raven-js@${nextVersion}"`);
207
console.log('✔ Changes committed');
208
209
210
function createTag(nextVersion) {
211
- execCommand(`git tag -a ${nextVersion} -m "Version ${nextVersion}"`);
+ execCommand(`git tag -a "raven-js@${nextVersion}" -m "raven-js@${nextVersion}"`);
212
console.log('✔ Tag created');
213
214
0 commit comments