Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug/#110 #160

Closed
wants to merge 14 commits into from
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
language: node_js
node_js:
- "stable"
script: npm run coverage
after_script: "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
5 changes: 4 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,10 @@ module.exports = function( grunt ) {
grunt.renameTask( 'release', '_release' );
grunt.registerTask( 'dev', 'Browserifies the files on every change to src', [ 'browserify:live' ] );
grunt.registerTask( 'test-unit', [ 'exec:runUnitTests' ] );

grunt.registerTask( 'just-build', 'Browserifies, tests and minifies the client file', [
'browserify:dist',
'uglify:dist'
] );
grunt.registerTask( 'build', 'Browserifies, tests and minifies the client file', [
'browserify:dist',
'exec:runUnitTestsOnce',
Expand Down
Loading