summaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorjules <jules@okfoc.us>2014-01-29 10:48:39 -0500
committerjules <jules@okfoc.us>2014-01-29 10:48:39 -0500
commitc6b804f72f3e61f09692b2b29f73e1a6eb25687d (patch)
treeaf9d1e27df3903ad5d38cef906bee47ba4654c34 /Gruntfile.js
parent1e0a45507ef0956c290547c44b8bb66a5e1e8b6f (diff)
build with uglified script
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 9cbc671..9ee254a 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -5,7 +5,7 @@ module.exports = function(grunt) {
pkg: grunt.file.readJSON('package.json'),
dentist: {
options: {
- include: "app.concat.js"
+ include: "app.min.js"
},
build: {
src: 'shader-combo.html',
@@ -97,6 +97,6 @@ module.exports = function(grunt) {
// Default task(s).
- grunt.registerTask('default', ['dentist:build', 'concat:build', 'copy:build']);
- grunt.registerTask('install', ['default', 'uglify:build', 'clean', 'copy:release']);
+ grunt.registerTask('default', ['dentist:build', 'concat:build', 'uglify:build', 'copy:build']);
+ grunt.registerTask('install', ['default', 'clean', 'copy:release']);
};