summaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
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']);
};