-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathesbuild.js
50 lines (45 loc) · 1.23 KB
/
esbuild.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
const esbuild = require("esbuild")
const path = require("node:path")
const util = require("node:util")
const readFile = util.promisify(require("node:fs").readFile)
const InlineCSSPlugin = (_options = {}) => {
return {
name: "inline-css",
setup(build) {
build.onLoad({ filter: /\.(css)$/ }, async (args) => {
const sourcePath = path.resolve(args.resolveDir, args.path)
const sourceJS = await generateInjectCSS(sourcePath)
return {
contents: sourceJS,
loader: "js",
}
})
},
}
}
async function generateInjectCSS(sourcePath) {
const sourceCSS = await readFile(sourcePath)
const transformed = await esbuild.transform(sourceCSS, {
loader: "css",
minify: true,
})
const minified = `${transformed.code.trim()}`
.replaceAll(/\s+/g, " ")
.replaceAll(/\s*([{},;:])\s*/g, "$1")
return `(()=>{
let d = document
var e = d.createElement('style')
e.textContent = \`${minified}\`
d.head.appendChild(e)
})();`
}
esbuild.build({
entryPoints: [
{ out: "f3cc", in: "./src/main.js" },
{ out: "f3cc/gcm", in: "./src/gcm.js" },
],
outdir: "feincms3_cookiecontrol/static",
bundle: true,
minify: true,
plugins: [InlineCSSPlugin()],
})