Skip to content

Commit

Permalink
update ovenware to fix windows issues
Browse files Browse the repository at this point in the history
  • Loading branch information
zedgu committed Jun 8, 2015
1 parent 3fc4ea0 commit f0e0aa5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "Automatic Model / Controller Loader for Koa",
"main": "lib/kow.js",
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --reporter spec --require should --harmony-generators test/* --bail",
"test-cov": "NODE_ENV=test node --harmony-generators node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -u exports --require should test/* --bail",
"test-travis": "NODE_ENV=test node --harmony-generators node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -u exports --require should test/* --bail"
"test": "./node_modules/.bin/mocha --reporter spec --require should --harmony-generators test/* --bail",
"test-cov": "node --harmony-generators node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- -u exports --require should test/* --bail",
"test-travis": "node --harmony-generators node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha --report lcovonly -- -u exports --require should test/* --bail"
},
"repository": {
"type": "git",
Expand All @@ -30,7 +30,7 @@
"dependencies": {
"debug": "*",
"koa-router": "^4.2.0",
"ovenware": "^0.1.2"
"ovenware": "^0.2.0"
},
"devDependencies": {
"co-body": "^1.0.0",
Expand Down
2 changes: 1 addition & 1 deletion test/kow.js
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ describe('Kow Testing', function(){
aliases: {
index: ''
},
prefix: '/'
prefix: ''
});
});
});
Expand Down

0 comments on commit f0e0aa5

Please sign in to comment.