aboutsummaryrefslogtreecommitdiff
path: root/grunt
diff options
context:
space:
mode:
authorChris Rebert <[email protected]>2016-06-10 09:28:03 -0700
committerGitHub <[email protected]>2016-06-10 09:28:03 -0700
commitce2e944aa6957528f23f1f7e680ac0cb4a75dcac (patch)
tree6397427c20a1e4b5392ef5e68af0447695e9a640 /grunt
parent9ddd62d391d906606bdb715cddc98fccd0620234 (diff)
downloadbootstrap-ce2e944aa6957528f23f1f7e680ac0cb4a75dcac.tar.xz
bootstrap-ce2e944aa6957528f23f1f7e680ac0cb4a75dcac.zip
Strip out UMD & CJS in favor of ES6 modules (#20072)
Diffstat (limited to 'grunt')
-rw-r--r--grunt/bs-commonjs-generator.js30
1 files changed, 0 insertions, 30 deletions
diff --git a/grunt/bs-commonjs-generator.js b/grunt/bs-commonjs-generator.js
deleted file mode 100644
index 1aac15075..000000000
--- a/grunt/bs-commonjs-generator.js
+++ /dev/null
@@ -1,30 +0,0 @@
-/*!
- * Bootstrap Grunt task for the CommonJS module generation
- * http://getbootstrap.com
- * Copyright 2014-2015 The Bootstrap Authors
- * Copyright 2014-2015 Twitter, Inc.
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */
-
-'use strict';
-
-var fs = require('fs');
-var path = require('path');
-
-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);
-
- function srcPathToDestRequire(srcFilepath) {
- return 'require(\'' + srcFilepath.replace(/\\/g, '/') + '\')';
- }
-
- var moduleOutputJs = COMMONJS_BANNER + srcFiles.map(srcPathToDestRequire).join('\n');
- try {
- fs.writeFileSync(destFilepath, moduleOutputJs);
- } catch (err) {
- grunt.fail.warn(err);
- }
- grunt.log.writeln('File ' + destFilepath.cyan + ' created.');
-};