From ce2e944aa6957528f23f1f7e680ac0cb4a75dcac Mon Sep 17 00:00:00 2001 From: Chris Rebert Date: Fri, 10 Jun 2016 09:28:03 -0700 Subject: Strip out UMD & CJS in favor of ES6 modules (#20072) --- grunt/bs-commonjs-generator.js | 30 ------------------------------ 1 file changed, 30 deletions(-) delete mode 100644 grunt/bs-commonjs-generator.js (limited to 'grunt/bs-commonjs-generator.js') 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.'); -}; -- cgit v1.2.3