-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathrollup.config.js
71 lines (65 loc) · 1.83 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
import { defineConfig } from 'rollup';
// A Rollup plugin which locates modules using the Node resolution algorithm
import { nodeResolve } from '@rollup/plugin-node-resolve';
// A Rollup plugin to convert CommonJS modules to ES6, so they can be included in a Rollup bundle
import commonjs from '@rollup/plugin-commonjs';
// Use the latest JS features in your Rollup bundle
import babel from '@rollup/plugin-babel';
// Minifies the bundle
import terser from '@rollup/plugin-terser';
// CSS
// Enable the PostCSS preprocessor
import postcss from 'rollup-plugin-postcss';
// Use @import to include other CSS files
import atImport from 'postcss-import';
// Use the latest CSS features in your Rollup bundle
import postcssPresetEnv from 'postcss-preset-env';
// Development: Enables a livereload server that watches for changes to CSS, JS, and Handlbars files
import { resolve } from 'path';
import livereload from 'rollup-plugin-livereload';
const output = {
dir: 'assets/built/',
sourcemap: true,
format: 'es',
globals: {
youtube: 'onYouTubeIframeAPIReady',
YT: 'YT',
},
};
const plugins = [commonjs(), nodeResolve(), babel({ babelHelpers: 'bundled' }), terser()];
const css = postcss({
extract: true,
sourceMap: true,
plugins: [
atImport(),
postcssPresetEnv({
features: {
'custom-properties': false,
'logical-properties-and-values': false,
},
}),
],
minimize: true,
});
// Rollup configuration
export default defineConfig([
{
input: 'assets/js/app/app.js',
output,
plugins: [
css,
...plugins,
process.env.BUILD !== 'production' &&
livereload({
watch: resolve('.'),
extraExts: ['hbs'],
exclusions: [resolve('node_modules')],
}),
],
},
{
input: 'assets/js/syntax-highlighting.js',
output,
plugins,
},
]);