Skip to content

Commit

Permalink
feat: drop update command entirely
Browse files Browse the repository at this point in the history
  • Loading branch information
micalevisk committed Jun 27, 2022
1 parent 70c2098 commit 3b58957
Show file tree
Hide file tree
Showing 4 changed files with 0 additions and 46 deletions.
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.

0 comments on commit 3b58957

Please sign in to comment.