Skip to content

Commit 541bac8

Browse files
author
Aaron Forsander
committed
Fixes #37.
1 parent 3a0f014 commit 541bac8

1 file changed

Lines changed: 3 additions & 0 deletions

File tree

index.js

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -393,6 +393,9 @@ function Argv (args, cwd) {
393393
Object.keys(defaults).forEach(function (key) {
394394
if (!(key in argv)) {
395395
argv[key] = defaults[key];
396+
if (key in aliases) {
397+
argv[aliases[key]] = defaults[key];
398+
}
396399
}
397400
});
398401

0 commit comments

Comments
 (0)