Skip to content

Commit

Permalink
chore(): resolve conflicts
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmysliwiec committed Jul 8, 2022
2 parents 6cf2df9 + 07d0278 commit d31cd59
Show file tree
Hide file tree
Showing 6 changed files with 529 additions and 19,880 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 d31cd59

Please sign in to comment.