Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ng-dev/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runParserWithCompletedFunctions((yargs: Argv) => {
.command('format <command>', '', buildFormatParser)
.command('pr <command>', '', buildPrParser)
.command('pullapprove <command>', '', buildPullapproveParser)
.command('release <command>', '', buildReleaseParser)
.command('release', '', buildReleaseParser)
.command('ts-circular-deps <command>', '', tsCircularDependenciesBuilder)
.command('caretaker <command>', '', buildCaretakerParser)
.command('misc <command>', '', buildMiscParser)
Expand Down
1 change: 0 additions & 1 deletion ng-dev/release/BUILD.bazel
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ ts_project(
"//ng-dev/release/npm-dist-tag",
"//ng-dev/release/precheck",
"//ng-dev/release/publish",
"//ng-dev/release/set-dist-tag",
"//ng-dev/release/stamping",
"//ng-dev/utils",
],
Expand Down
3 changes: 2 additions & 1 deletion ng-dev/release/build/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -88,5 +88,6 @@ export const ReleaseBuildCommandModule: CommandModule<{}, ReleaseBuildOptions> =
builder,
handler,
command: 'build',
describe: 'Builds the release output for the current branch.',
// Hidden from help as this is for use by the release tooling itself.
describe: false,
};
2 changes: 0 additions & 2 deletions ng-dev/release/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ import {ReleaseInfoCommandModule} from './info/cli.js';
import {ReleaseNotesCommandModule} from './notes/cli.js';
import {ReleasePrecheckCommandModule} from './precheck/cli.js';
import {ReleasePublishCommandModule} from './publish/cli.js';
import {ReleaseSetDistTagCommand} from './set-dist-tag/cli.js';
import {BuildEnvStampCommand} from './stamping/cli.js';
import {ReleaseNpmDistTagCommand} from './npm-dist-tag/cli.js';

Expand All @@ -27,7 +26,6 @@ export function buildReleaseParser(localYargs: Argv) {
.command(ReleaseInfoCommandModule)
.command(ReleaseNpmDistTagCommand)
.command(ReleasePrecheckCommandModule)
.command(ReleaseSetDistTagCommand)
.command(BuildEnvStampCommand)
.command(ReleaseNotesCommandModule);
}
3 changes: 2 additions & 1 deletion ng-dev/release/info/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,5 +68,6 @@ export const ReleaseInfoCommandModule: CommandModule<{}, ReleaseInfoOptions> = {
builder,
handler,
command: 'info',
describe: 'Prints information for the current release state.',
// Hidden from help as this is for use by the release tooling itself.
describe: false,
};
3 changes: 2 additions & 1 deletion ng-dev/release/notes/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,5 +80,6 @@ export const ReleaseNotesCommandModule: CommandModule<{}, Options> = {
builder,
handler,
command: 'notes',
describe: 'Generate release notes',
// Hidden from help as this is for use by the release tooling itself.
describe: false,
};
4 changes: 3 additions & 1 deletion ng-dev/release/npm-dist-tag/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,10 @@ function subCommandsBuilder(argv: Argv) {
}

export const ReleaseNpmDistTagCommand: CommandModule<{}, {}> = {
describe: 'Update the NPM dist tags for release packages.',
// Hidden from help menu as this is primarily for use by the release tooling itself.
describe: false,
command: 'npm-dist-tag',

builder: subCommandsBuilder,
handler: () => {},
};
1 change: 1 addition & 0 deletions ng-dev/release/precheck/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,6 @@ async function handler() {
export const ReleasePrecheckCommandModule: CommandModule<{}, {}> = {
handler,
command: 'precheck',
// Hidden from help as this is for use by the release tooling itself.
describe: false,
};
2 changes: 1 addition & 1 deletion ng-dev/release/publish/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,6 @@ async function handler() {
export const ReleasePublishCommandModule: CommandModule<{}, ReleasePublishOptions> = {
builder,
handler,
command: 'publish',
command: '$0',
describe: 'Publish new releases and configure version branches.',
};
10 changes: 0 additions & 10 deletions ng-dev/release/set-dist-tag/BUILD.bazel

This file was deleted.

3 changes: 0 additions & 3 deletions ng-dev/release/set-dist-tag/README.md

This file was deleted.

25 changes: 0 additions & 25 deletions ng-dev/release/set-dist-tag/cli.ts

This file was deleted.

3 changes: 2 additions & 1 deletion ng-dev/release/stamping/cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,5 +63,6 @@ export const BuildEnvStampCommand: CommandModule<{}, Options> = {
builder,
handler,
command: 'build-env-stamp',
describe: 'Build the environment stamping information',
// Hidden from help menu as this is primarily for use by the release tooling itself.
describe: false,
};
Loading