Skip to content

Commit

Permalink
fix(index.js): missing import of outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
Simen Daehlin committed Sep 8, 2022
1 parent 0547166 commit 1ec9c8c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cli/index.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
const { getArgs } = require(`./args`);
const commands = require(`./commands`);
const outputs = require(`./outputs`);

module.exports = {
getArgs,
commands
commands,
outputs
};

0 comments on commit 1ec9c8c

Please sign in to comment.