second commit
This commit is contained in:
60
node_modules/flowbite-datepicker/rollup.config.js
generated
vendored
Normal file
60
node_modules/flowbite-datepicker/rollup.config.js
generated
vendored
Normal file
@ -0,0 +1,60 @@
|
||||
import resolve from '@rollup/plugin-node-resolve';
|
||||
import commonjs from '@rollup/plugin-commonjs';
|
||||
import { babel } from '@rollup/plugin-babel';
|
||||
|
||||
export default [
|
||||
{
|
||||
input: 'js/main.js',
|
||||
output: [
|
||||
{
|
||||
file: 'dist/main.cjs.js',
|
||||
format: 'cjs',
|
||||
},
|
||||
{
|
||||
file: 'dist/main.esm.js',
|
||||
format: 'es',
|
||||
},
|
||||
],
|
||||
plugins: [
|
||||
resolve(),
|
||||
commonjs(),
|
||||
babel({ babelHelpers: 'bundled', presets: ['@babel/preset-env'] }),
|
||||
],
|
||||
},
|
||||
{
|
||||
input: 'js/Datepicker.js',
|
||||
output: [
|
||||
{
|
||||
file: 'dist/Datepicker.cjs.js',
|
||||
format: 'cjs',
|
||||
},
|
||||
{
|
||||
file: 'dist/Datepicker.esm.js',
|
||||
format: 'es',
|
||||
},
|
||||
],
|
||||
plugins: [
|
||||
resolve(),
|
||||
commonjs(),
|
||||
babel({ babelHelpers: 'bundled', presets: ['@babel/preset-env'] }),
|
||||
],
|
||||
},
|
||||
{
|
||||
input: 'js/DateRangePicker.js',
|
||||
output: [
|
||||
{
|
||||
file: 'dist/DateRangePicker.cjs.js',
|
||||
format: 'cjs',
|
||||
},
|
||||
{
|
||||
file: 'dist/DateRangePicker.esm.js',
|
||||
format: 'es',
|
||||
},
|
||||
],
|
||||
plugins: [
|
||||
resolve(),
|
||||
commonjs(),
|
||||
babel({ babelHelpers: 'bundled', presets: ['@babel/preset-env'] }),
|
||||
],
|
||||
}
|
||||
];
|
Reference in New Issue
Block a user