2
0
mirror of https://github.com/tenrok/bootstrap.git synced 2026-06-11 18:02:28 +03:00

integration test to be sure bootstrap can be bundled

This commit is contained in:
Johann-S
2018-12-13 10:54:54 +01:00
committed by XhmikosR
parent db31ee1ea2
commit af60644d2f
5 changed files with 131 additions and 1 deletions
+20
View File
@@ -0,0 +1,20 @@
/* eslint-env node */
const resolve = require('rollup-plugin-node-resolve')
const commonjs = require('rollup-plugin-commonjs')
const babel = require('rollup-plugin-babel')
module.exports = {
input: 'js/tests/integration/bundle.js',
output: {
file: 'js/coverage/bundle.js',
format: 'iife'
},
plugins: [
resolve(),
commonjs(),
babel({
exclude: 'node_modules/**'
})
]
}