8a0b08b1 by Adam Heath

Add uglification of requirejs output files.

1 parent 3049f160
1 { 1 {
2 "name": "grunt-monty-python", 2 "name": "grunt-monty-python",
3 "version": "2016.05.25-0", 3 "version": "2016.05.25-1",
4 "ignore": [ 4 "ignore": [
5 "**/.*", 5 "**/.*",
6 "node_modules", 6 "node_modules",
......
...@@ -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 }
......
1 { 1 {
2 "name": "grunt-monty-python", 2 "name": "grunt-monty-python",
3 "version": "2016.05.25-0", 3 "version": "2016.05.25-1",
4 "description": "Build system for grunt", 4 "description": "Build system for grunt",
5 "license": "BSD", 5 "license": "BSD",
6 "repository": { 6 "repository": {
......