-
Notifications
You must be signed in to change notification settings - Fork 33
/
rollup.config.js
120 lines (108 loc) · 3.55 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
import path from 'path';
import fs from 'fs';
import replace from '@rollup/plugin-replace';
import sourcemaps from 'rollup-plugin-sourcemaps';
import resolve from 'rollup-plugin-node-resolve';
import commonjs from 'rollup-plugin-commonjs';
import ts from 'rollup-plugin-ts';
import jscc from 'rollup-plugin-jscc';
async function main()
{
// eslint-disable-next-line global-require
const pkg = require('./package.json');
const plugins = [
replace({ __VERSION__: pkg.version }),
sourcemaps(),
ts({ browserslist: false }),
resolve({
browser: true,
preferBuiltins: false,
}),
commonjs({ extensions: ['.js', '.ts'] }),
];
const compiled = (new Date()).toUTCString().replace(/GMT/g, 'UTC');
const sourcemap = true;
const results = [];
const banner = [
`/*!`,
` * ${pkg.name} - v${pkg.version}`,
` * Compiled ${compiled}`,
` *`,
` * ${pkg.name} is licensed under the MIT License.`,
` * http://www.opensource.org/licenses/mit-license`,
` */`,
].join('\n');
// Check for bundle folder
const basePath = __dirname;
const input = path.join(basePath, 'src/index.ts');
const freeze = false;
results.push({
input,
output: [
{
banner,
file: path.join(basePath, pkg.main),
format: 'cjs',
freeze,
sourcemap,
},
{
banner,
file: path.join(basePath, pkg.module),
format: 'es',
freeze,
sourcemap,
},
],
external: (id) => id.includes('@pixi'),
plugins: [jscc({ values: { _IIFE: false } })].concat(plugins),
});
// The package.json file has a bundle field
// we'll use this to generate the bundle file
// this will package all dependencies
if (pkg.bundle)
{
results.push({
input,
output: {
banner,
file: path.join(basePath, pkg.bundle),
format: 'iife',
freeze,
name: 'PIXI.animate',
sourcemap,
extend: true,
globals: (id) => {
if (id === '@pixi/utils') return 'PIXI.utils';
if (id === '@pixi/filter-color-matrix') return 'PIXI.filters';
return id.includes('@pixi') ? 'PIXI' : undefined;
},
},
external: (id) => id.includes('@pixi'),
plugins: [jscc({ values: { _IIFE: true } })].concat(plugins),
});
const footer = fs.readFileSync(path.resolve('src/v1-asset-shim.js'), 'utf8');
results.push({
input,
output: {
banner,
footer,
file: path.join(basePath, pkg.bundle.replace('.js', '-legacy.js')),
format: 'iife',
freeze,
name: 'PIXI.animate',
sourcemap,
extend: true,
globals: (id) => {
if (id === '@pixi/utils') return 'PIXI.utils';
if (id === '@pixi/filter-color-matrix') return 'PIXI.filters';
return id.includes('@pixi') ? 'PIXI' : undefined;
},
},
external: (id) => id.includes('@pixi'),
plugins: [jscc({ values: { _IIFE: true } })].concat(plugins),
});
}
return results;
}
export default main();