Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/grunt
diff options
context:
space:
mode:
authorChris Rebert <code@rebertia.com>2014-10-28 01:20:55 +0300
committerChris Rebert <code@rebertia.com>2014-10-28 01:20:55 +0300
commit96801605a4c777a903766a895161a0e556a21c2f (patch)
treebedbe10192d974da99e3a1cf2470bf27bea365ed /grunt
parentaf70ac8ae1e959e90e6859a36ae29d41f10ee880 (diff)
tweak banner of autogenerated CommonJS module
Diffstat (limited to 'grunt')
-rw-r--r--grunt/bs-commonjs-generator.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/grunt/bs-commonjs-generator.js b/grunt/bs-commonjs-generator.js
index e28900fb5e..b0642cd8f1 100644
--- a/grunt/bs-commonjs-generator.js
+++ b/grunt/bs-commonjs-generator.js
@@ -2,7 +2,7 @@
var fs = require('fs');
var path = require('path');
-var COMMONJS_BANNER = '// This file is generated. You can require() it in a CommonJS environment.\n';
+var COMMONJS_BANNER = '// This file is autogenerated via the `commonjs` Grunt task. You can require() this file in a CommonJS environment.\n';
module.exports = function generateCommonJSModule(grunt, srcFiles, destFilepath) {
var destDir = path.dirname(destFilepath);