Skip to content
This repository has been archived by the owner on Jul 15, 2021. It is now read-only.

Commit

Permalink
Add default build task to rebuild lib/ folder.
Browse files Browse the repository at this point in the history
Refs #28
  • Loading branch information
nwronski committed Oct 16, 2016
1 parent b4700fb commit 280b86b
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -360,14 +360,20 @@ module.exports = function(grunt) {
require('load-grunt-tasks')(grunt);

grunt.registerTask('default', [
'build'
'dist'
]);
grunt.registerTask('build', [
'clean:build',
'shell:build',
'babel:build'
]);

grunt.registerTask('dist', [
'demobuild',
'clean:release',
'copy:release',
'usebanner:release'
]);
grunt.registerTask('bin', [
'clean:bin',
'babel:bin',
Expand Down

0 comments on commit 280b86b

Please sign in to comment.