|
12345678910111213141516171819202122232425262728293031323334353637 |
- import sass from 'rollup-plugin-sass';
- import { terser } from 'rollup-plugin-terser';
-
- const dev = {
- input: 'src/index.js',
- output: {
- name: 'Gantt',
- file: 'dist/influxframework-gantt.js',
- sourcemap: true,
- format: 'iife',
- },
- plugins: [
- sass({
- output: true,
- }),
- ],
- };
- const prod = {
- input: 'src/index.js',
- output: {
- name: 'Gantt',
- file: 'dist/influxframework-gantt.min.js',
- sourcemap: true,
- format: 'iife',
- },
- plugins: [
- sass({
- output: true,
- options: {
- outputStyle: 'compressed',
- },
- }),
- terser(),
- ],
- };
-
- export default [dev, prod];
|