2020-02-28 18:46:08 +03:00
|
|
|
import autoExternal from 'rollup-plugin-auto-external'
|
2020-10-11 11:41:32 +03:00
|
|
|
import buble from '@rollup/plugin-buble' // Transpile/polyfill with reasonable browser support
|
|
|
|
import commonjs from '@rollup/plugin-commonjs' // Convert CommonJS modules to ES6
|
2020-02-27 09:18:51 +03:00
|
|
|
import { terser } from 'rollup-plugin-terser'
|
2020-10-11 11:41:32 +03:00
|
|
|
import typescript from '@rollup/plugin-typescript'
|
|
|
|
import vue from 'rollup-plugin-vue'
|
2019-10-07 17:24:30 +03:00
|
|
|
|
2020-10-11 11:41:32 +03:00
|
|
|
// noinspection JSUnusedGlobalSymbols
|
2019-10-07 17:24:30 +03:00
|
|
|
export default {
|
2020-10-11 11:41:32 +03:00
|
|
|
input: 'src/index.ts',
|
|
|
|
output: [{
|
|
|
|
name: 'Formulario',
|
|
|
|
exports: 'default',
|
|
|
|
globals: {
|
|
|
|
'is-plain-object': 'isPlainObject',
|
|
|
|
'is-url': 'isUrl',
|
|
|
|
'nanoid/non-secure': 'nanoid',
|
|
|
|
},
|
|
|
|
sourcemap: false,
|
|
|
|
}],
|
2020-10-09 22:58:28 +03:00
|
|
|
external: ['nanoid/non-secure'],
|
|
|
|
plugins: [
|
|
|
|
commonjs(),
|
|
|
|
autoExternal(),
|
2020-10-11 11:41:32 +03:00
|
|
|
typescript({ sourceMap: false }),
|
2020-10-09 22:58:28 +03:00
|
|
|
vue({
|
|
|
|
css: true, // Dynamically inject css as a <style> tag
|
|
|
|
compileTemplate: true // Explicitly convert template to render function
|
|
|
|
}),
|
|
|
|
buble({
|
2020-10-11 11:41:32 +03:00
|
|
|
objectAssign: 'Object.assign',
|
2020-10-09 22:58:28 +03:00
|
|
|
}), // Transpile to ES5,
|
2020-10-11 11:41:32 +03:00
|
|
|
terser(),
|
2020-10-09 22:58:28 +03:00
|
|
|
]
|
2019-10-07 17:24:30 +03:00
|
|
|
}
|