summaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorjules <jules@okfoc.us>2014-01-29 10:47:21 -0500
committerjules <jules@okfoc.us>2014-01-29 10:47:21 -0500
commit1e0a45507ef0956c290547c44b8bb66a5e1e8b6f (patch)
tree7739420bf847f716801cc34de394510f94a76464 /Gruntfile.js
parent34c7b31ec1e4a39ec7f86e4116956d5701fa02bd (diff)
load js BEFORE closing body tag
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']);
};