Skip to content

Commit

Permalink
Use grunt build for travis, watch by default
Browse files Browse the repository at this point in the history
  • Loading branch information
Chlodochar committed Jul 26, 2016
1 parent e37d7be commit c114f54
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ install:
- npm install grunt-cli -g
- npm install
script:
- grunt
- grunt build
- nosetests
3 changes: 2 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,7 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-concat');
grunt.loadNpmTasks('grunt-html-validation');

grunt.registerTask('default', ['jshint', 'sass', 'cssmin', 'uglify']);
grunt.registerTask('build', ['jshint', 'sass', 'cssmin', 'uglify']);
grunt.registerTask('default', ['build', 'watch']);

};

0 comments on commit c114f54

Please sign in to comment.