Skip to content

Commit

Permalink
fix(lib): Expose commitizen as a library
Browse files Browse the repository at this point in the history
This fixes index.js so that it exposes commitizen as a library.

Closes #80
  • Loading branch information
jimthedev committed Mar 10, 2016
1 parent f1c719f commit 26fbf40
Showing 1 changed file with 2 additions and 17 deletions.
19 changes: 2 additions & 17 deletions src/index.js
Original file line number Diff line number Diff line change
@@ -1,17 +1,2 @@
function all() {
console.log('all');
}

function random() {
console.log('random');
}

function randomItems() {
console.log('randomItems');
}

module.exports = {
all:all,
random:random,
randomItems:randomItems
};
var commitizen = require('./commitizen');
module.exports = commitizen;

0 comments on commit 26fbf40

Please sign in to comment.