Skip to content

Commit 2cbbf1f

Browse files
committed
simplified plugin API
not only did this turn out to be unnecessary, but plugins should not be encouraged to use anything other than the config location as reference
1 parent 84baec4 commit 2cbbf1f

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
@@ -23,7 +23,7 @@ module.exports = (rootDir, config = "faucet.js", // eslint-disable-next-line ind
2323
}
2424

2525
let plugin = load(PLUGINS[type]);
26-
plugin(cfg, { rootDir, configDir }, { watcher, fingerprint, compact });
26+
plugin(cfg, configDir, { watcher, fingerprint, compact });
2727
});
2828
};
2929

0 commit comments

Comments
 (0)