File tree Expand file tree Collapse file tree 5 files changed +1
-59
lines changed Expand file tree Collapse file tree 5 files changed +1
-59
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change 72
72
"precommit" : " precommit" ,
73
73
"preinstall" : " node scripts/sort-workspaces.js" ,
74
74
"bump-auxiliary" : " npm run bump-auxiliary --workspace @mongosh/build" ,
75
- "publish-auxiliary" : " npm run publish-auxiliary --workspace @mongosh/build" ,
76
- "tags-auxiliary" : " npm run tags-auxiliary --workspace @mongosh/build"
75
+ "publish-auxiliary" : " npm run publish-auxiliary --workspace @mongosh/build"
77
76
},
78
77
"config" : {
79
78
"unsafe-perm" : true
Original file line number Diff line number Diff line change 30
30
"publish" : " ts-node src/index.ts publish" ,
31
31
"bump-auxiliary" : " ts-node src/index.ts bump --auxiliary" ,
32
32
"publish-auxiliary" : " ts-node src/index.ts publish --auxiliary" ,
33
- "tags-auxiliary" : " ts-node src/index.ts temp-push-auxiliary-tags --auxiliary" ,
34
33
"reformat" : " npm run prettier -- --write . && npm run eslint --fix"
35
34
},
36
35
"license" : " Apache-2.0" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ const validCommands: (ReleaseCommand | 'trigger-release')[] = [
20
20
'download-crypt-shared-library' ,
21
21
'download-and-list-artifacts' ,
22
22
'trigger-release' ,
23
- 'temp-push-auxiliary-tags' ,
24
23
] as const ;
25
24
26
25
const isValidCommand = (
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ export type ReleaseCommand =
34
34
| 'download-crypt-shared-library'
35
35
| 'download-and-list-artifacts'
36
36
| 'draft'
37
- | 'temp-push-auxiliary-tags'
38
37
| 'publish' ;
39
38
40
39
/**
@@ -57,11 +56,6 @@ export async function release(
57
56
redactConfig ( config )
58
57
) ;
59
58
60
- if ( command === 'temp-push-auxiliary-tags' ) {
61
- pushTags ( { useAuxiliaryPackagesOnly : true } ) ;
62
- return ;
63
- }
64
-
65
59
if ( command === 'bump' ) {
66
60
bumpAuxiliaryPackages ( ) ;
67
61
if ( ! config . useAuxiliaryPackagesOnly ) {
You can’t perform that action at this time.
0 commit comments