mirror of
https://git.adityakumar.xyz/hugo-devresume-theme.git
synced 2025-03-13 18:09:20 +00:00
20 lines
409 B
JavaScript
Executable file
20 lines
409 B
JavaScript
Executable file
/* 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/**'
|
|
})
|
|
]
|
|
}
|