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 7272 "precommit" : " precommit" ,
7373 "preinstall" : " node scripts/sort-workspaces.js" ,
7474 "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"
7776 },
7877 "config" : {
7978 "unsafe-perm" : true
Original file line number Diff line number Diff line change 3030 "publish" : " ts-node src/index.ts publish" ,
3131 "bump-auxiliary" : " ts-node src/index.ts bump --auxiliary" ,
3232 "publish-auxiliary" : " ts-node src/index.ts publish --auxiliary" ,
33- "tags-auxiliary" : " ts-node src/index.ts temp-push-auxiliary-tags --auxiliary" ,
3433 "reformat" : " npm run prettier -- --write . && npm run eslint --fix"
3534 },
3635 "license" : " Apache-2.0" ,
Original file line number Diff line number Diff line change @@ -20,7 +20,6 @@ const validCommands: (ReleaseCommand | 'trigger-release')[] = [
2020 'download-crypt-shared-library' ,
2121 'download-and-list-artifacts' ,
2222 'trigger-release' ,
23- 'temp-push-auxiliary-tags' ,
2423] as const ;
2524
2625const isValidCommand = (
Original file line number Diff line number Diff line change @@ -34,7 +34,6 @@ export type ReleaseCommand =
3434 | 'download-crypt-shared-library'
3535 | 'download-and-list-artifacts'
3636 | 'draft'
37- | 'temp-push-auxiliary-tags'
3837 | 'publish' ;
3938
4039/**
@@ -57,11 +56,6 @@ export async function release(
5756 redactConfig ( config )
5857 ) ;
5958
60- if ( command === 'temp-push-auxiliary-tags' ) {
61- pushTags ( { useAuxiliaryPackagesOnly : true } ) ;
62- return ;
63- }
64-
6559 if ( command === 'bump' ) {
6660 bumpAuxiliaryPackages ( ) ;
6761 if ( ! config . useAuxiliaryPackagesOnly ) {
You can’t perform that action at this time.
0 commit comments