Add uglification of requirejs output files.
Showing
3 changed files
with
12 additions
and
2 deletions
... | @@ -627,6 +627,16 @@ module.exports = function (grunt) { | ... | @@ -627,6 +627,16 @@ module.exports = function (grunt) { |
627 | src: [ | 627 | src: [ |
628 | '**/*.js', | 628 | '**/*.js', |
629 | ] | 629 | ] |
630 | }, { | ||
631 | expand: true, | ||
632 | dot: true, | ||
633 | cwd: 'dist/build/scripts', | ||
634 | dest: 'dist/build/scripts', | ||
635 | src: [ | ||
636 | '**/*.js', | ||
637 | '!config.js', | ||
638 | '!defaults/**/*.js', | ||
639 | ] | ||
630 | }] | 640 | }] |
631 | }; | 641 | }; |
632 | } | 642 | } | ... | ... |
-
Please register or sign in to post a comment