1
0
mirror of synced 2024-11-25 06:46:02 +03:00
vue-formulario/build/rollup.config.js

35 lines
996 B
JavaScript
Raw Normal View History

import commonjs from '@rollup/plugin-commonjs' // Convert CommonJS modules to ES6
import buble from '@rollup/plugin-buble' // Transpile/polyfill with reasonable browser support
import autoExternal from 'rollup-plugin-auto-external'
import vue from 'rollup-plugin-vue' // Handle .vue SFC files
import { terser } from 'rollup-plugin-terser'
export default {
2020-05-22 14:22:56 +03:00
input: 'src/Formulario.js', // Path relative to package.json
output: [
{
2020-05-22 14:22:56 +03:00
name: 'Formulario',
exports: 'default',
globals: {
'is-plain-object': 'isPlainObject',
'nanoid/non-secure': 'nanoid',
'is-url': 'isUrl',
2020-04-16 17:21:12 +03:00
},
sourcemap: false
2020-02-28 19:19:44 +03:00
}
],
2020-02-28 19:19:44 +03:00
external: ['nanoid/non-secure'],
plugins: [
commonjs(),
autoExternal(),
vue({
css: true, // Dynamically inject css as a <style> tag
compileTemplate: true // Explicitly convert template to render function
}),
buble({
objectAssign: 'Object.assign'
}), // Transpile to ES5,
terser()
]
}