Skip to content

Commit

Permalink
add hasWrapper function in clean and remove command (#3205)
Browse files Browse the repository at this point in the history
  • Loading branch information
voxsim authored and arcanis committed Apr 20, 2017
1 parent cb453f5 commit 219bd63
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/cli/commands/clean.js
Original file line number Diff line number Diff line change
Expand Up @@ -129,3 +129,7 @@ export async function run(
}

export function setFlags() {}

export function hasWrapper(): boolean {
return true;
}
4 changes: 4 additions & 0 deletions src/cli/commands/remove.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ export const requireLockfile = true;

export function setFlags() {}

export function hasWrapper(): boolean {
return true;
}

export async function run(
config: Config,
reporter: Reporter,
Expand Down

0 comments on commit 219bd63

Please sign in to comment.