-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathrollup.config.js
47 lines (43 loc) · 1.53 KB
/
rollup.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import { terser } from 'rollup-plugin-terser';
import postcss from 'rollup-plugin-postcss';
import babel from 'rollup-plugin-babel';
const purgecss = require('@fullhuman/postcss-purgecss')({
// Specify the paths to all of the template files in your project
content: ['./public/**/*.html', './src/**/*.js'],
// Include any special characters you're using in this regular expression
defaultExtractor: content => content.match(/[\w-/:]+(?<!:)/g) || [],
});
// `npm run build` -> `production` is true
// `npm run dev` -> `production` is false
const production = !process.env.ROLLUP_WATCH;
export default {
input: 'src/main.js',
output: {
file: 'public/bundle.js',
format: 'iife', // immediately-invoked function expression — suitable for <script> tags
sourcemap: !production,
},
plugins: [
resolve(), // tells Rollup how to find date-fns in node_modules
commonjs(), // converts date-fns to ES modules
babel({
babelrc: false,
presets: [['@babel/preset-env', { modules: false }]],
}),
postcss({
extract: true,
plugins: [
require('postcss-import'), // eslint-disable-line
require('tailwindcss'), // eslint-disable-line
require('autoprefixer'), // eslint-disable-line
require('cssnano')({ // eslint-disable-line
preset: 'default',
}),
...(production ? [purgecss] : []),
],
}),
production && terser(), // minify, but only in production
],
};