1
0
mirror of https://github.com/bobwen-dev/react-templates synced 2025-04-12 00:56:39 +02:00

Merge branch 'gh-pages' of github.com:wix/react-templates into gh-pages

This commit is contained in:
ido 2014-12-02 14:27:33 +02:00
commit 0c58bbf1dd
2 changed files with 15 additions and 1 deletions

View File

@ -43,11 +43,24 @@ module.exports = function (grunt) {
'playground/main.browser.js': ['playground/main.js']
}
}
},
node_tap: {
default_options: {
options: {
outputType: 'tap',
outputTo: 'console'
},
files: {
'tests': ['./test/src/*.js']
}
}
}
});
grunt.loadNpmTasks('grunt-browserify');
grunt.loadNpmTasks('grunt-eslint');
grunt.loadNpmTasks('grunt-node-tap');
grunt.registerTask('default', ['eslint', 'build_sources', 'check', 'build']);
grunt.registerTask('test', ['jasmine_node']);

View File

@ -37,6 +37,7 @@
"grunt-browserify": "^3.2.0",
"grunt-contrib-watch": "^0.6.1",
"grunt-eslint": "^2.0.0",
"grunt-node-tap": "^0.1.61",
"tape": "^3.0.2"
}
}
}