-
Notifications
You must be signed in to change notification settings - Fork 38
/
rollup.config.js
66 lines (56 loc) · 1.42 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
import typescript from '@rollup/plugin-typescript';
import resolve from '@rollup/plugin-node-resolve';
import cssImports from 'rollup-plugin-import-css';
import minifyHTML from 'rollup-plugin-minify-html-literals';
import serve from 'rollup-plugin-serve';
import { terser } from 'rollup-plugin-terser';
import versionInjector from 'rollup-plugin-version-injector';
import pkg from './package.json';
let targetFileName = pkg.main;
const plugins = [
resolve(),
minifyHTML(),
cssImports(),
versionInjector({
injectInComments: false,
logLevel: 'warn',
})
];
if (process.env.ROLLUP_WATCH) {
plugins.push(serve({
contentBase: ['./'],
host: '0.0.0.0',
port: 5501,
allowCrossOrigin: true,
headers: {
'Access-Control-Allow-Origin': '*',
},
}));
}
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);
}
export default {
external: [],
input: 'src/index.ts',
output: {
globals: {},
file: targetFileName,
format: 'iife',
sourcemap: true,
sourcemapExcludeSources: true,
sourcemapPathTransform: sourcemapPathTransform
},
plugins: plugins,
}