Skip to content

Commit

Permalink
fix: disable .strict checking for mdep docker
Browse files Browse the repository at this point in the history
  • Loading branch information
AVVS committed Sep 27, 2019
1 parent 65cde4f commit e43fd46
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion bin/cmds/docker.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ exports.builder = (yargs) => (
default: './Dockerfile',
normalize: true,
})
.strict()
.strict(false)
.help()
);
exports.handler = (argv) => {
Expand Down
1 change: 0 additions & 1 deletion bin/cmds/test.js
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,6 @@ exports.builder = (yargs) => (
string: true,
default: '',
})
.strict()
.help()
);
exports.handler = () => {};

0 comments on commit e43fd46

Please sign in to comment.