aboutsummaryrefslogtreecommitdiff
path: root/Gruntfile.js
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2014-01-14 13:25:27 -0800
committerChris Rebert <[email protected]>2014-01-14 13:27:50 -0800
commit46b0874ef5035a71484a69e598a6f148c73c55fa (patch)
tree76e457c6afc321d48753c8c1ebbc2a946e4d7e41 /Gruntfile.js
parent027af6deb4cd1783b4a6cfcc98ec3f64d585958a (diff)
downloadbootstrap-46b0874ef5035a71484a69e598a6f148c73c55fa.tar.xz
bootstrap-46b0874ef5035a71484a69e598a6f148c73c55fa.zip
add copyright notice to raw-files.js
Diffstat (limited to 'Gruntfile.js')
-rw-r--r--Gruntfile.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/Gruntfile.js b/Gruntfile.js
index 1f037e7a7..76f60e4d5 100644
--- a/Gruntfile.js
+++ b/Gruntfile.js
@@ -396,5 +396,8 @@ module.exports = function (grunt) {
// task for building customizer
grunt.registerTask('build-customizer', ['build-customizer-vars-form', 'build-raw-files']);
grunt.registerTask('build-customizer-vars-form', ['jade']);
- grunt.registerTask('build-raw-files', 'Add scripts/less files to customizer.', generateRawFilesJs);
+ grunt.registerTask('build-raw-files', 'Add scripts/less files to customizer.', function () {
+ var banner = grunt.template.process('<%= banner %>');
+ generateRawFilesJs(banner);
+ });
};