-
Notifications
You must be signed in to change notification settings - Fork 22
/
rollup.config.js
68 lines (64 loc) · 1.21 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
import resolve from "rollup-plugin-node-resolve";
import typescript from "rollup-plugin-typescript2";
import pkg from "./package.json";
const EXTERNALS = ["@samuelmeuli/font-manager"];
const GLOBALS = {
"@samuelmeuli/font-manager": "FontManager",
};
const INPUT_FILE = "./src/FontPicker.ts";
const OUTPUT_NAME = "FontPicker";
export default [
// Browser configuration
{
input: INPUT_FILE,
output: [
// File for distribution
{
file: "./dist-browser/FontPicker.js",
format: "umd",
name: OUTPUT_NAME,
},
// File for demo
{
file: "./demo/dist/FontPicker.js",
format: "umd",
name: OUTPUT_NAME,
},
],
plugins: [
// Bundle `font-manager` into the package (to make it usable with a <script> tag)
resolve(),
typescript(),
],
},
// NPM package configuration
{
input: INPUT_FILE,
output: [
// UMD
{
file: pkg.main,
format: "umd",
name: OUTPUT_NAME,
globals: GLOBALS,
},
// ES module
{
file: pkg.module,
format: "esm",
globals: GLOBALS,
},
],
external: EXTERNALS,
plugins: [
typescript({
tsconfigOverride: {
compilerOptions: {
declaration: true,
declarationMap: true,
},
},
}),
],
},
];