Initial commit

This commit is contained in:
Porawit Dongwang
2026-09-16 23:20:08 +07:00
commit 0041668dbb
32577 changed files with 3687927 additions and 0 deletions
@@ -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'] }),
],
}
];