-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.js
60 lines (52 loc) · 1.36 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
import esbuild from "esbuild"
import { globSync as glob } from "glob"
import fs from "fs"
const readFile = fs.promises.readFile
;(async () => {
const pkg = JSON.parse(
await readFile("./package.json"),
)
const sourceFolder = process.env.BUILD_SOURCE_FOLDER || "./src"
const targetFolder = process.env.BUILD_TARGET_FOLDER || "./dist"
// Node ESM build
await esbuild.build({
entryPoints: glob(`${sourceFolder}/**/*.js`),
platform: "node",
format: "esm",
outdir: `${targetFolder}/esm`,
})
// Node CJS build
await esbuild.build({
entryPoints: [`${sourceFolder}/index.js`],
platform: "node",
format: "cjs",
outdir: `${targetFolder}/cjs`,
outExtension: {
".js": ".cjs",
},
bundle: true,
})
// Browser
const browserTargetFile = `${targetFolder}/${pkg.name}.js`
let licenseFile = "./LICENSE"
// Copyright for banner
const bannerCopyright = fs.readFileSync(licenseFile, "utf-8").split("\n").find(l => l.startsWith("Copyright"))
// Browser build
await esbuild.build({
entryPoints: [`${sourceFolder}/index.js`],
bundle: true,
minify: false,
sourcemap: true,
target: "es2015",
format: "iife",
globalName: "jskos",
outfile: browserTargetFile,
banner: {
js: `/*!
* ${pkg.name} v${pkg.version}
* ${bannerCopyright}
* @license ${pkg.license}
*/`,
},
})
})()