-
Notifications
You must be signed in to change notification settings - Fork 6
/
rollup.config.js
58 lines (50 loc) · 2.03 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
// rollup.config.js
import resolve from 'rollup-plugin-node-resolve';
import collectSass from 'rollup-plugin-collect-sass'
export default {
input: 'materialdjango/static/materialdjango/main.js',
output: {
name: 'materialdjango',
file: 'materialdjango/static/materialdjango/bundle.js',
format: 'es'
},
plugins: [
collectSass({}),
resolve({
// use "module" field for ES6 module if possible
module: true, // Default: true
// use "main" field or index.js, even if it's not an ES6 module
// (needs to be converted from CommonJS to ES6
// – see https://github.com/rollup/rollup-plugin-commonjs
main: true, // Default: true
// some package.json files have a `browser` field which
// specifies alternative files to load for people bundling
// for the browser. If that's you, use this option, otherwise
// pkg.browser will be ignored
browser: true, // Default: false
// not all files you want to resolve are .js files
extensions: [ '.mjs', '.js', '.jsx', '.json' ], // Default: [ '.mjs', '.js', '.json', '.node' ]
// whether to prefer built-in modules (e.g. `fs`, `path`) or
// local ones with the same names
preferBuiltins: false, // Default: true
// Lock the module search in this path (like a chroot). Module defined
// outside this path will be marked as external
// jail: '/my/jail/path', // Default: '/'
// Set to an array of strings and/or regexps to lock the module search
// to modules that match at least one entry. Modules not matching any
// entry will be marked as external
// only: [ 'some_module', /^@some_scope\/.*$/ ], // Default: null
// If true, inspect resolved files to check that they are
// ES2015 modules
modulesOnly: true, // Default: false
// Any additional options that should be passed through
// to node-resolve
// customResolveOptions: {
// moduleDirectory: 'js_modules'
// }
})
],
watch:{
clearScreen: false
}
};