We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
commonjs
1 parent af05d56 commit f782b1eCopy full SHA for f782b1e
build/rollup.config.utilities.js
@@ -3,6 +3,7 @@
3
const path = require('path')
4
const babel = require('rollup-plugin-babel')
5
const resolve = require('rollup-plugin-node-resolve')
6
+const commonjs = require('rollup-plugin-commonjs')
7
8
const pkg = require(path.resolve(__dirname, '../package.json'))
9
const BUNDLE = process.env.BUNDLE === 'true'
@@ -11,6 +12,7 @@ const year = new Date().getFullYear()
11
12
let fileDest = 'coreui-utilities.js'
13
const plugins = [
14
resolve(),
15
+ commonjs(),
16
babel({
17
exclude: 'node_modules/**', // Only transpile our source code
18
externalHelpersWhitelist: [ // Include only required helpers
0 commit comments