From: Chris Rebert Date: Mon, 27 Oct 2014 22:20:55 +0000 (-0700) Subject: tweak banner of autogenerated CommonJS module X-Git-Tag: v3.3.0~26^2~2^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=96801605a4c777a903766a895161a0e556a21c2f;p=thirdparty%2Fbootstrap.git tweak banner of autogenerated CommonJS module --- 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);