forked from mozilla/fathom-fox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.config.js
43 lines (41 loc) · 1.29 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
import commonjs from 'rollup-plugin-commonjs';
import resolve from 'rollup-plugin-node-resolve';
import json from 'rollup-plugin-json';
import builtins from 'rollup-plugin-node-builtins';
import globals from 'rollup-plugin-node-globals';
import copy from 'rollup-plugin-copy';
const webpackPostcss = require('./src/rollup-plugin-webpack-postcss/rollup-plugin-webpack-postcss');
/**
* Return typical rollup settings for a file of a given name.
*/
function mindlesslyFactoredOutSettings(name) {
return {
input: 'src/' + name + '.js',
output: {
file: 'addon/' + name + '.js',
format: 'iife',
name // Convention: name the var the same thing.
},
plugins: [
resolve({preferBuiltins: true}),
webpackPostcss(),
commonjs({
namedExports: {
'wu': ['forEach', 'map', 'flatten']
}
}),
json(),
globals(),
builtins(),
copy({
targets: [
{ src: 'node_modules/simmerjs/dist/simmer.js', dest: 'addon' },
]
}),
]
}
}
export default [
mindlesslyFactoredOutSettings('contentScript'),
mindlesslyFactoredOutSettings('evaluate')
];