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/build
diff options
context:
space:
mode:
authorHelmut Granda <contact@helmutgranda.com>2018-09-25 18:55:35 +0300
committerXhmikosR <xhmikosr@gmail.com>2018-09-26 15:53:44 +0300
commitebc220754bf8f6b1a34203c1d2864a8d156a01bb (patch)
tree7223271386f11a4a86e47e52e421d58434831a78 /build
parentd7f79b06dceebd6844ac323f7f99290fe36b45b0 (diff)
Add license headers in js/dist files
By implementing the same approach of rollup.config.js and replicate it in build-plugins.js, individual plugins will display license headers.
Diffstat (limited to 'build')
-rw-r--r--build/banner.js11
-rw-r--r--build/build-plugins.js2
-rw-r--r--build/rollup.config.js9
3 files changed, 15 insertions, 7 deletions
diff --git a/build/banner.js b/build/banner.js
new file mode 100644
index 0000000000..4c66589f09
--- /dev/null
+++ b/build/banner.js
@@ -0,0 +1,11 @@
+const path = require('path')
+const pkg = require(path.resolve(__dirname, '../package.json'))
+const year = new Date().getFullYear()
+
+module.exports = function () {
+ return `/*!
+ * Bootstrap v${pkg.version} (${pkg.homepage})
+ * Copyright 2011-${year} ${pkg.author}
+ * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
+ */`
+}
diff --git a/build/build-plugins.js b/build/build-plugins.js
index f767967000..6780446855 100644
--- a/build/build-plugins.js
+++ b/build/build-plugins.js
@@ -9,6 +9,7 @@ const rollup = require('rollup')
const path = require('path')
const babel = require('rollup-plugin-babel')
const TEST = process.env.NODE_ENV === 'test'
+const banner = require(path.resolve(__dirname, './banner.js'))
const plugins = [
babel({
@@ -67,6 +68,7 @@ Object.keys(bsPlugins)
external
}).then((bundle) => {
bundle.write({
+ banner,
format,
name: pluginKey,
sourcemap: true,
diff --git a/build/rollup.config.js b/build/rollup.config.js
index df88fb304d..1e6d5fcebc 100644
--- a/build/rollup.config.js
+++ b/build/rollup.config.js
@@ -1,10 +1,9 @@
const path = require('path')
const babel = require('rollup-plugin-babel')
const resolve = require('rollup-plugin-node-resolve')
+const banner = require(path.resolve(__dirname, './banner.js'))
-const pkg = require(path.resolve(__dirname, '../package.json'))
const BUNDLE = process.env.BUNDLE === 'true'
-const year = new Date().getFullYear()
let fileDest = 'bootstrap.js'
const external = ['jquery', 'popper.js']
@@ -36,11 +35,7 @@ if (BUNDLE) {
module.exports = {
input: path.resolve(__dirname, '../js/src/index.js'),
output: {
- banner: `/*!
- * Bootstrap v${pkg.version} (${pkg.homepage})
- * Copyright 2011-${year} ${pkg.author}
- * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
- */`,
+ banner,
file: path.resolve(__dirname, `../dist/js/${fileDest}`),
format: 'umd',
globals,