Skip to content

Commit

Permalink
chore(grunt): fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
polonel committed Nov 7, 2018
1 parent 7fc4aca commit 5623bed
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
Expand Up @@ -132,8 +132,8 @@ module.exports = function(grunt) {
});

grunt.registerTask('buildcss', ['uglify:uikit', 'cssmin']);
grunt.registerTask('server', 'launch webserver and watch tasks', ['parallel:web']);
grunt.registerTask('build', ['buildcss', 'shell:webpackDist']);
grunt.registerTask('server', 'launch webserver and watch tasks', ['uglify:uikit', 'cssmin', 'parallel:web']);
grunt.registerTask('build', ['uglify:uikit', 'cssmin', 'shell:webpackDist']);
grunt.registerTask('devbuild', ['shell:webpackDev']);
grunt.registerTask('default', ['server']);
};

0 comments on commit 5623bed

Please sign in to comment.