Skip to content

Commit

Permalink
Correctly reexport flow controllers
Browse files Browse the repository at this point in the history
Fixes #278
  • Loading branch information
gustavohenke committed May 27, 2021
1 parent becac73 commit 10ff00c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Expand Up @@ -9,7 +9,7 @@ const RestartProcess = require('./src/flow-control/restart-process');
const concurrently = require('./src/concurrently');
const Logger = require('./src/logger');

module.exports = (commands, options = {}) => {
module.exports = exports = (commands, options = {}) => {
const logger = new Logger({
outputStream: options.outputStream || process.stdout,
prefixFormat: options.prefix,
Expand Down

0 comments on commit 10ff00c

Please sign in to comment.