Skip to content

Commit

Permalink
adding status module to the index.js
Browse files Browse the repository at this point in the history
  • Loading branch information
mariuskubilius committed Jul 18, 2013
1 parent 86e2591 commit 4016fff
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Makefile
@@ -1,4 +1,7 @@
test:
@./node_modules/.bin/mocha

test-cov: lib-cov
@EXPRESS_COV=1 $(MAKE) test REPORTER=html-cov > coverage.html

.PHONY: test
3 changes: 2 additions & 1 deletion index.js
@@ -1,5 +1,6 @@
var slugify = require('./lib/slugify');
var ancestorTree = require('./lib/ancestorTree');
var status = require('./lib/status');
module.exports['slugify'] = slugify;
module.exports['ancestorTree'] = ancestorTree;

module.exports['status'] = status;
3 changes: 1 addition & 2 deletions package.json
Expand Up @@ -15,7 +15,6 @@
},
"devDependencies": {
"mocha": "*",
"assert": "*",
"async": "*"
},
"keywords": [
Expand All @@ -34,4 +33,4 @@
"type": "git",
"url": "git://github.com/mariuskubilius/lbg-mongoose-utils.git"
}
}
}

0 comments on commit 4016fff

Please sign in to comment.