-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.js
108 lines (99 loc) · 2.78 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
import {build, context} from "esbuild"
import progress from "@olton/esbuild-plugin-progress"
import { replace } from "esbuild-plugin-replace";
import pkg from "./package.json" with {type: "json"};
const version = pkg.version
const production = process.env.MODE === "production"
const banner = `
/*!
* Datetime v${version}.
* Build time: ${new Date().toLocaleString()}
* Copyright ${new Date().getFullYear()} by Serhii Pimenov
* Licensed under MIT
*
* Build time: ${new Date().toLocaleDateString()} ${new Date().toLocaleTimeString()}
*/
`
const defaults = {
bundle: true,
minify: false,
sourcemap: false,
banner: {
js: banner,
},
}
if (production) {
await build({
...defaults,
entryPoints: ["src/index.js"],
outfile: 'dist/datetime.js',
format: "esm",
plugins: [
progress({
text: 'Building Datetime ESM...',
succeedText: 'ESM built successfully in %s ms!'
}),
replace({
'__BUILD_TIME__': new Date().toLocaleString(),
'__VERSION__': version,
})
],
})
await build({
...defaults,
entryPoints: ["src/index.js"],
outfile: 'lib/datetime.js',
format: "iife",
minify: production,
sourcemap: false,
plugins: [
progress({
text: 'Building Datetime Lib...',
succeedText: 'Lib built successfully in %s ms!'
}),
replace({
'__BUILD_TIME__': new Date().toLocaleString(),
'__VERSION__': version,
})
],
})
} else {
const ctxEsm = await context({
...defaults,
entryPoints: ["src/index.js"],
outfile: 'dist/datetime.js',
format: "esm",
plugins: [
progress({
text: 'Building Datetime ESM...',
succeedText: 'ESM built successfully in %s ms!'
}),
replace({
'__BUILD_TIME__': new Date().toLocaleString(),
'__VERSION__': version,
})
],
})
const ctxLib = await context({
...defaults,
entryPoints: ["src/index.js"],
outfile: 'lib/datetime.js',
format: "iife",
minify: production,
sourcemap: false,
plugins: [
progress({
text: 'Building Datetime Lib...',
succeedText: 'Lib built successfully in %s ms!'
}),
replace({
'__BUILD_TIME__': new Date().toLocaleString(),
'__VERSION__': version,
})
],
})
await Promise.all([
await ctxEsm.watch(),
await ctxLib.watch(),
]).catch(() => process.exit(1))
}