File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 22
22
"gitTag" : " cross-env-shell node ./util/gitTag.js" ,
23
23
"gitAddAll" : " git add -A" ,
24
24
"gitPush" : " git push" ,
25
- "gitPushTags" : " git push --tags" ,
25
+ "gitPushTags" : " git push --tags --force " ,
26
26
"setGit" : " npm run gitAddAll && npm run gitCommit && npm run gitTag && npm run gitPush && npm run gitPushTags" ,
27
27
"publishRest" : " npm run setGit && npm publish" ,
28
28
"publishPatch" : " npm run bumpPatch && npm run publishRest" ,
Original file line number Diff line number Diff line change 34
34
} ) ;
35
35
return retVal ;
36
36
} ;
37
- execute ( 'cross-env-shell git tag NPM_' + NPM_VERSION )
37
+ execute ( 'cross-env-shell git tag -f NPM_' + NPM_VERSION )
38
38
. 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 ) ;
40
40
} )
41
41
. catch ( function ( reason ) { console . log ( 'Promise thrown or rejected. Reason:\n' + reason ) } ) ;
42
42
} ( ) ;
You can’t perform that action at this time.
0 commit comments