Skip to content

Commit

Permalink
fix(version): argh, make 'build' a prereq for test and fix gruntfile …
Browse files Browse the repository at this point in the history
…for eslint
  • Loading branch information
zzo committed May 4, 2016
1 parent 640ba85 commit f2a6109
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions gruntfile.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
module.exports = function (grunt) {
grunt.loadTasks('tasks');
grunt.loadTasks('tasks')
grunt.initConfig({
pkgFile: 'package.json',
build: {
Expand Down Expand Up @@ -65,7 +65,7 @@ module.exports = function (grunt) {

require('load-grunt-tasks')(grunt)

grunt.registerTask('test', ['karma'])
grunt.registerTask('test', ['build', 'karma'])
grunt.registerTask('default', ['eslint', 'test'])

grunt.registerTask('release', 'Bump the version and publish to NPM.', function (type) {
Expand Down

0 comments on commit f2a6109

Please # to comment.