summaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 458a321..9cbc671 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -14,7 +14,10 @@ module.exports = function(grunt) {
}
},
concat: {
- dist: {
+ options: {
+ separator: ";"
+ },
+ build: {
src: [
"js/vendor/acorn.js",
"js/vendor/gif.js",
@@ -94,6 +97,6 @@ module.exports = function(grunt) {
// Default task(s).
- grunt.registerTask('default', ['dentist', 'concat', 'uglify', 'copy:build']);
- grunt.registerTask('install', ['dentist', 'concat', 'uglify', 'clean', 'copy:release']);
+ grunt.registerTask('default', ['dentist:build', 'concat:build', 'copy:build']);
+ grunt.registerTask('install', ['default', 'uglify:build', 'clean', 'copy:release']);
};