Skip to content

Commit

Permalink
Add wallaby.js support, holy crap
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronjensen committed Aug 27, 2015
1 parent 358406f commit 7a35404
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@
"lodash": "^3.0.0"
},
"devDependencies": {
"babel": "^5.8.21",
"babel-core": "^5.5.0",
"babel-eslint": "^4.0.5",
"babel-loader": "^5.3.2",
Expand Down
19 changes: 19 additions & 0 deletions wallaby.conf.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
/*eslint-disable */
var babel = require('babel');

module.exports = function(wallaby) {
return {
files: [
'lib/**/*.js',
],
tests: [
'test/**/*-spec.js',
],
compilers: {
'**/*.js': wallaby.compilers.babel({babel: babel, stage: 1}),
},
env: {
type: 'node',
},
};
};

0 comments on commit 7a35404

Please sign in to comment.