Skip to content

Commit

Permalink
remove tape runner dep
Browse files Browse the repository at this point in the history
  • Loading branch information
joshrtay committed Jan 8, 2016
1 parent f3e7b64 commit 9dcb9f8
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion template/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ node_modules: package.json
@touch node_modules

test: node_modules
babel test/*.js
@${BIN}/tape -r babel-register test/*

validate: node_modules
@standard
Expand Down
6 changes: 4 additions & 2 deletions template/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@
},
"dependencies": {},
"devDependencies": {
"babel-preset-es2015": "^6.1.2",
"tape": "^4.2.0"
"babel-cli": "^6.4.0",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.3.13",
"tape": "^4.2.2"
}
}
2 changes: 1 addition & 1 deletion template/src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@
* Exports
*/

export default {{basename}}
export default {{camelcase basename}}

0 comments on commit 9dcb9f8

Please sign in to comment.