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

Commit 280b86b

Browse files
committed
Add default build task to rebuild lib/ folder.
Refs #28
1 parent b4700fb commit 280b86b

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

Gruntfile.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -360,14 +360,20 @@ module.exports = function(grunt) {
360360
require('load-grunt-tasks')(grunt);
361361

362362
grunt.registerTask('default', [
363-
'build'
363+
'dist'
364364
]);
365365
grunt.registerTask('build', [
366366
'clean:build',
367367
'shell:build',
368368
'babel:build'
369369
]);
370370

371+
grunt.registerTask('dist', [
372+
'demobuild',
373+
'clean:release',
374+
'copy:release',
375+
'usebanner:release'
376+
]);
371377
grunt.registerTask('bin', [
372378
'clean:bin',
373379
'babel:bin',

0 commit comments

Comments
 (0)