Skip to content

Commit 3b56244

Browse files
0.0.0
1 parent ee664ec commit 3b56244

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
"gitTag": "cross-env-shell node ./util/gitTag.js",
2323
"gitAddAll": "git add -A",
2424
"gitPush": "git push",
25-
"gitPushTags": "git push --tags",
25+
"gitPushTags": "git push --tags --force",
2626
"setGit": "npm run gitAddAll && npm run gitCommit && npm run gitTag && npm run gitPush && npm run gitPushTags",
2727
"publishRest": "npm run setGit && npm publish",
2828
"publishPatch": "npm run bumpPatch && npm run publishRest",

util/gitTag.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@
3434
});
3535
return retVal;
3636
};
37-
execute('cross-env-shell git tag NPM_' + NPM_VERSION)
37+
execute('cross-env-shell git tag -f NPM_' + NPM_VERSION)
3838
.then(function(res){
39-
return execute('cross-env-shell git tag IPV_' + pckjson.org_ipv.version);
39+
return execute('cross-env-shell git tag -f IPV_' + pckjson.org_ipv.version);
4040
})
4141
.catch(function(reason){console.log('Promise thrown or rejected. Reason:\n' + reason)});
4242
}();

0 commit comments

Comments
 (0)