Skip to content

Commit

Permalink
Merge pull request #56 from arkency/merge_rolof_pr
Browse files Browse the repository at this point in the history
Fix koans working on Windows
  • Loading branch information
voter101 committed Jan 2, 2016
2 parents f7ed86a + 80da56e commit 222cc22
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions package.json
Expand Up @@ -4,10 +4,10 @@
"description": "React.js Koans",
"main": "index.js",
"scripts": {
"compile": "babel exercises --out-dir src > /dev/null 2>&1",
"compile": "babel exercises --out-dir src",
"setup": "npm install && ncp koans/ exercises/",
"start": "npm run compile > /dev/null 2>&1 && nodemon server.js",
"test": "npm run compile > /dev/null 2>&1 && mocha -b --compilers js:babel/register -r test/helpers.js test/**/*.js || true",
"start": "npm run compile && nodemon server.js",
"test": "npm run compile && mocha -b --compilers js:babel/register --require test/helpers.js test/**/*.js || echo",
"watch": "onchange exercises/*.jsx -- npm run test"
},
"repository": {
Expand Down

0 comments on commit 222cc22

Please sign in to comment.