Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: drop update command entirely #1699

Merged
merged 1 commit into from Jul 8, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 0 additions & 1 deletion actions/index.ts
Expand Up @@ -3,6 +3,5 @@ export * from './build.action';
export * from './generate.action';
export * from './info.action';
export * from './new.action';
export * from './update.action';
export * from './start.action';
export * from './add.action';
16 changes: 0 additions & 16 deletions actions/update.action.ts

This file was deleted.

3 changes: 0 additions & 3 deletions commands/command.loader.ts
Expand Up @@ -7,7 +7,6 @@ import {
InfoAction,
NewAction,
StartAction,
UpdateAction,
} from '../actions';
import { ERROR_PREFIX } from '../lib/ui';
import { AddCommand } from './add.command';
Expand All @@ -16,14 +15,12 @@ import { GenerateCommand } from './generate.command';
import { InfoCommand } from './info.command';
import { NewCommand } from './new.command';
import { StartCommand } from './start.command';
import { UpdateCommand } from './update.command';
export class CommandLoader {
public static load(program: CommanderStatic): void {
new NewCommand(new NewAction()).load(program);
new BuildCommand(new BuildAction()).load(program);
new StartCommand(new StartAction()).load(program);
new InfoCommand(new InfoAction()).load(program);
new UpdateCommand(new UpdateAction()).load(program);
new AddCommand(new AddAction()).load(program);
new GenerateCommand(new GenerateAction()).load(program);

Expand Down
26 changes: 0 additions & 26 deletions commands/update.command.ts

This file was deleted.