Skip to content

Commit

Permalink
Update to named export
Browse files Browse the repository at this point in the history
  • Loading branch information
bidoubiwa committed May 28, 2021
1 parent f737dfa commit d925398
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/cli.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/usr/bin/env node
const { program } = require('commander');
const pkg = require('../package.json');
const combineJson = require('./combine-json');
const { program } = require('commander');

program
.version(pkg.version)
Expand Down
2 changes: 1 addition & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
const combineJson = require('./combine-json');

module.exports = combineJson;
module.exports = { combineJson };

0 comments on commit d925398

Please sign in to comment.