generated from maxwroc/typescript-project-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
rollup.config.js
74 lines (63 loc) · 1.71 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
import typescript from '@rollup/plugin-typescript';
import resolve from '@rollup/plugin-node-resolve';
import { terser } from 'rollup-plugin-terser';
import styles from "rollup-plugin-styles";
import copyBundleFiles from './build/rollup-plugin-copy-bundles.js';
import pkg from './package.json' with { type: "json" };
let prodFilePath = "dist/" + pkg.name + ".es.js";
let targetFileName = prodFilePath.replace(".es.js", ".js");
const plugins = [
resolve(),
styles(),
];
plugins.push(typescript({ project: 'tsconfig.json' }));
let sourcemapPathTransform = undefined;
if (process.env.RELEASE) {
plugins.push(
terser({
compress: {}
})
);
targetFileName = targetFileName.replace(".js", ".min.js");
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);
}
else {
plugins.push(copyBundleFiles('docs'));
}
const bundles = [
{
external: ['window'],
input: 'src/index.ts',
output: {
globals: {},
file: targetFileName,
name: pkg.exportVar,
format: 'iife',
sourcemap: true,
sourcemapExcludeSources: true,
sourcemapPathTransform: sourcemapPathTransform,
},
plugins: plugins,
}
]
if (process.env.RELEASE) {
bundles.push({
external: ['window'],
input: 'src/index.ts',
output: {
globals: {},
file: prodFilePath,
format: 'es',
sourcemap: true,
sourcemapExcludeSources: true,
sourcemapPathTransform: sourcemapPathTransform,
name: process.env.npm_package_exportVar
},
plugins: plugins,
})
}
export default bundles;