-
-
Notifications
You must be signed in to change notification settings - Fork 96
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix(casify): fix casify to also return original task name
* fix(casify): fix casify to also return original task name casify should also return original task name to avoid common user errors. For example, for task name like e2e, it is not obvious to see that it converts to camelCase e2E and kebab-case e-2-e. This avoids scripts must resolve to string error if user passes in the original task name over camelified or kebabified task name * style(style): fix styles fix styles per travis build error log
- Loading branch information
1 parent
bb6d8b7
commit df7e4cd
Showing
4 changed files
with
36 additions
and
24 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,3 +4,4 @@ coverage | |
dist | ||
.opt-in | ||
.opt-out | ||
npm-debug.log |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,5 +18,5 @@ function kebabAndCamelCasify(obj) { | |
result[key] = val | ||
} | ||
return result | ||
}, {}) | ||
}, obj) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters