-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollup.js
68 lines (64 loc) · 1.66 KB
/
rollup.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
var rollup = require('rollup');
var babel = require('rollup-plugin-babel');
var uglify = require('rollup-plugin-uglify');
var dest = 'dist/';
var version = require('./package.json').version;
var banner = '/* Ether version ' + version + ' */';
function addBanner(code) {
return banner + '\n' + code;
}
rollup.rollup({
entry: 'src/index.js',
banner: banner,
plugins: [
babel(),
uglify(),
// banner property in bundle.write
// doesn't seem to be working after
// the uglify plugin has run
{transformBundle: addBanner}
],
}).then(function (bundle) {
return Promise.all([
bundle.write({
format: 'amd',
moduleId: 'ether',
exports: 'named',
dest: dest + 'ether.amd.js',
}),
bundle.write({
format: 'cjs',
exports: 'named',
dest: dest + 'ether.cjs.js',
}),
bundle.write({
format: 'iife',
moduleName: 'Ether',
exports: 'named',
dest: dest + 'ether.global.js',
sourcemap: 'inline',
}),
]);
}).catch(function (err) {
console.error(err);
});
rollup.rollup({
entry: 'src/index.js',
banner: banner,
plugins: [
// banner property in bundle.write
// doesn't seem to be working after
// the uglify plugin has run
{transformBundle: addBanner}
],
}).then(function (bundle) {
return Promise.all([
bundle.write({
format: 'es6',
exports: 'named',
dest: dest + 'ether.es6.js',
}),
]);
}).catch(function (err) {
console.error(err);
});