-
Notifications
You must be signed in to change notification settings - Fork 0
/
rollup.config.js
54 lines (45 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
44
45
46
47
48
49
50
51
52
53
54
import typescript from '@rollup/plugin-typescript';
import resolve from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
import pkg from './package.json';
export default function (args) {
let targetFileName = pkg.main;
const plugins = [
resolve()
];
const target = args.target ? args.target.toUpperCase() : null;
const allowedTargets = ["ES3", "ES5", "ES6"];
if (allowedTargets.some(t => t == target)) {
plugins.push(typescript({ target: target }));
targetFileName = targetFileName.replace(".js", `.${target.toLowerCase()}.js`);
}
else {
plugins.push(typescript());
}
let sourcemapPathTransform = undefined;
if (process.env.RELEASE) {
plugins.push(
terser({
compress: {}
})
);
let repoRoot = pkg.repository.url
.replace("https://github.com", "https://raw.githubusercontent.com")
.replace(/.git$/, "");
repoRoot += "/";
sourcemapPathTransform = file => repoRoot + "v" + pkg.version + file.substr(2);
}
return {
external: [],
input: 'src/index.ts',
output: {
globals: {},
file: targetFileName,
format: 'iife',
sourcemap: true,
sourcemapExcludeSources: true,
sourcemapPathTransform: sourcemapPathTransform
},
plugins: plugins,
}
};