Skip to content

Commit 73e7711

Browse files
committed
Fix not passing an options-object
Fixes #26
1 parent 7c76ecf commit 73e7711

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function getMainProcessPaths(topModuleObject, cwd) {
3131
return paths;
3232
}
3333

34-
module.exports = (moduleObject, options) => {
34+
module.exports = (moduleObject, options = {}) => {
3535
// This module should be a dev dependency, but guard
3636
// this in case the user included it as a dependency.
3737
if (!isDev) {

0 commit comments

Comments
 (0)