-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuild.js
51 lines (47 loc) · 1.17 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
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 production = process.env.MODE === "production"
const version = pkg.version
const banner = `
/*!
* String v${version} (@olton/string)
* Copyright ${new Date().getFullYear()} by Serhii Pimenov
* Built: ${new Date().toLocaleString()}
* Licensed under MIT
*/
`
const options = {
entryPoints: ["src/index.js"],
bundle: true,
minify: true,
sourcemap: false,
outfile: "dist/string.js",
format: "esm",
banner: {
js: banner
},
plugins: [
progress({
text: 'Building String...',
succeedText: `Built successfully in %s ms!`
}),
replace({
'__BUILD_TIME__': new Date().toLocaleString(),
'__VERSION__': version,
})
]
}
if (production) {
await build({
...options,
}).catch(() => process.exit(1))
} else {
const ctxNpm = await context({
...options,
})
await Promise.all([
ctxNpm.watch(),
]).catch(() => process.exit(1))
}