Skip to content
This repository has been archived by the owner on Jun 16, 2021. It is now read-only.

Commit

Permalink
refactor: move /src -> /lib and create run.js
Browse files Browse the repository at this point in the history
  • Loading branch information
streamich committed Jun 4, 2018
1 parent 1be406f commit 2f8a392
Show file tree
Hide file tree
Showing 9 changed files with 4 additions and 3 deletions.
4 changes: 1 addition & 3 deletions index.js
Original file line number Diff line number Diff line change
@@ -1,3 +1 @@
const {prompter} = require('./src/index');

module.exports = {prompter};
module.exports = require('./lib/index');
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 3 additions & 0 deletions run.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
const {prompter} = require('.');

prompter();

0 comments on commit 2f8a392

Please sign in to comment.