2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-05-15 11:59:39 +03:00
Files
bootstrap/js/tests/integration/rollup.bundle.js
T
2019-12-25 21:36:22 +02:00

19 lines
343 B
JavaScript

/* eslint-env node */
const resolve = require('@rollup/plugin-node-resolve')
const babel = require('rollup-plugin-babel')
module.exports = {
input: 'js/tests/integration/bundle.js',
output: {
file: 'js/coverage/bundle.js',
format: 'iife'
},
plugins: [
resolve(),
babel({
exclude: 'node_modules/**'
})
]
}