-
Notifications
You must be signed in to change notification settings - Fork 30
/
build.js
109 lines (100 loc) · 2 KB
/
build.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
import { build } from 'esbuild';
import { writeFile } from 'node:fs/promises';
const builds = [];
// Bundled CJS
builds.push(
build({
entryPoints: ['./src/index.js'],
logLevel: 'info',
bundle: true,
format: 'cjs',
outfile: 'bundled/culori.cjs'
})
);
// Bundled CJS, minified
builds.push(
build({
entryPoints: ['./src/index.js'],
logLevel: 'info',
bundle: true,
minify: true,
format: 'cjs',
outfile: 'bundled/culori.min.cjs'
})
);
// Bundled ESM
builds.push(
build({
entryPoints: ['./src/index.js'],
logLevel: 'info',
bundle: true,
format: 'esm',
metafile: true,
outfile: 'bundled/culori.mjs'
}).then(result => {
writeFile(
'bundled/meta.json',
JSON.stringify(result.metafile, null, 2)
);
})
);
// Bundled ESM, minified
builds.push(
build({
entryPoints: ['./src/index.js'],
logLevel: 'info',
bundle: true,
minify: true,
format: 'esm',
outfile: 'bundled/culori.min.mjs'
})
);
// Bundled IIFE
builds.push(
build({
entryPoints: ['./src/index.js'],
logLevel: 'info',
bundle: true,
format: 'iife',
globalName: 'culori',
outfile: 'bundled/culori.js'
})
);
// Bundled IIFE, minified
builds.push(
build({
entryPoints: ['./src/index.js'],
logLevel: 'info',
bundle: true,
minify: true,
format: 'iife',
globalName: 'culori',
outfile: 'bundled/culori.min.js'
})
);
// Bundled UMD
// Adapted from: https://github.com/umdjs/umd/blob/master/templates/returnExports.js
builds.push(
build({
entryPoints: ['./src/index.js'],
logLevel: 'info',
bundle: true,
format: 'iife',
globalName: 'culori',
banner: {
js: `(function(root, factory) {
if (typeof define === 'function' && define.amd) {
define([], factory);
} else if (typeof module === 'object' && module.exports) {
module.exports = factory();
} else {
root.culori = factory();
}
}
(typeof self !== 'undefined' ? self : this, function() {`
},
footer: { js: `return culori; }));` },
outfile: 'bundled/culori.umd.js'
})
);
await Promise.all(builds);