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
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@gmail.com>2019-02-26 14:20:34 +0300
committerXhmikosR <xhmikosr@gmail.com>2019-03-11 18:01:28 +0300
commit46c037410b8c7eaab3cf50a5cf44093aa2fd41f4 (patch)
treecb8c857562c4d3f819a5a8fcc563bc8f2c126e4e /build/rollup.config.js
parent44e6abcba50309df4fae56a9c7ef79145b64a356 (diff)
Comply to the new rules.
Diffstat (limited to 'build/rollup.config.js')
-rw-r--r--build/rollup.config.js16
1 files changed, 9 insertions, 7 deletions
diff --git a/build/rollup.config.js b/build/rollup.config.js
index e2819f8c04..d02acb5366 100644
--- a/build/rollup.config.js
+++ b/build/rollup.config.js
@@ -1,18 +1,20 @@
'use strict'
-const path = require('path')
-const babel = require('rollup-plugin-babel')
+const path = require('path')
+const babel = require('rollup-plugin-babel')
const resolve = require('rollup-plugin-node-resolve')
-const banner = require('./banner.js')
+const banner = require('./banner.js')
-const BUNDLE = process.env.BUNDLE === 'true'
+const BUNDLE = process.env.BUNDLE === 'true'
-let fileDest = 'bootstrap.js'
+let fileDest = 'bootstrap.js'
const external = ['popper.js']
const plugins = [
babel({
- exclude: 'node_modules/**', // Only transpile our source code
- externalHelpersWhitelist: [ // Include only required helpers
+ // Only transpile our source code
+ exclude: 'node_modules/**',
+ // Include only required helpers
+ externalHelpersWhitelist: [
'defineProperties',
'createClass',
'inheritsLoose',