1
0
Fork 0
mirror of synced 2024-09-09 22:16:26 +12:00
budibase/scripts/build.js

157 lines
4 KiB
JavaScript
Raw Normal View History

2023-04-25 05:24:09 +12:00
#!/usr/bin/node
2023-03-03 04:34:52 +13:00
const start = Date.now()
2023-03-03 05:03:56 +13:00
const fs = require("fs")
const { cp, readdir, copyFile, mkdir } = require("node:fs/promises")
const path = require("path")
2023-03-03 05:03:56 +13:00
2023-03-03 04:34:52 +13:00
const { build } = require("esbuild")
const { compile } = require("svelte/compiler")
2023-03-03 04:34:52 +13:00
2023-05-25 21:49:38 +12:00
const {
default: TsconfigPathsPlugin,
} = require("@esbuild-plugins/tsconfig-paths")
2023-06-17 01:26:34 +12:00
const { nodeExternalsPlugin } = require("esbuild-node-externals")
2023-03-03 04:34:52 +13:00
const svelteCompilePlugin = {
name: "svelteCompile",
setup(build) {
// Compiles `.svelte` files into JS classes so that they can be directly imported into our
// Typescript packages
build.onLoad({ filter: /\.svelte$/ }, async args => {
const source = await fs.promises.readFile(args.path, "utf8")
const dir = path.dirname(args.path)
try {
const { js } = compile(source, { css: "injected", generate: "ssr" })
return {
// The code placed in the generated file
contents: js.code,
// The loader this is passed to, basically how the above provided content is "treated",
// the contents provided above will be transpiled and bundled like any other JS file.
loader: "js",
// Where to resolve any imports present in the loaded file
resolveDir: dir,
}
} catch (e) {
return { errors: [JSON.stringify(e)] }
}
})
},
}
2023-12-05 23:02:44 +13:00
var { argv } = require("yargs")
2023-05-03 23:38:23 +12:00
async function runBuild(entry, outfile) {
2023-05-03 23:38:23 +12:00
const isDev = process.env.NODE_ENV !== "production"
2023-05-04 01:04:54 +12:00
const tsconfig = argv["p"] || `tsconfig.build.json`
const tsconfigPathPluginContent = JSON.parse(
fs.readFileSync(tsconfig, "utf-8")
)
2023-08-10 20:48:18 +12:00
if (
2023-11-01 02:49:40 +13:00
!fs.existsSync(path.join(__dirname, "../packages/pro/src")) &&
2023-08-10 20:48:18 +12:00
tsconfigPathPluginContent.compilerOptions?.paths
) {
2023-07-26 22:01:05 +12:00
// If we don't have pro, we cannot bundle backend-core.
// Otherwise, the main context will not be shared between libraries
2023-08-15 04:44:24 +12:00
delete tsconfigPathPluginContent?.compilerOptions?.paths?.[
"@budibase/backend-core"
]
2023-08-15 04:44:24 +12:00
delete tsconfigPathPluginContent?.compilerOptions?.paths?.[
"@budibase/backend-core/*"
]
}
2023-05-04 01:04:54 +12:00
const sharedConfig = {
entryPoints: [entry],
2023-10-03 20:49:58 +13:00
bundle: true,
2023-05-03 23:38:23 +12:00
minify: !isDev,
2023-05-04 04:15:57 +12:00
sourcemap: isDev,
2023-05-04 01:04:54 +12:00
tsconfig,
plugins: [
svelteCompilePlugin,
TsconfigPathsPlugin({ tsconfig: tsconfigPathPluginContent }),
nodeExternalsPlugin({
allowList: ["@budibase/frontend-core", "svelte"],
}),
],
preserveSymlinks: true,
2023-10-03 20:49:58 +13:00
metafile: true,
2023-11-01 03:21:40 +13:00
external: [
"deasync",
"mock-aws-s3",
"nock",
"bull",
"pouchdb",
"bcrypt",
"bcryptjs",
2023-12-19 06:41:15 +13:00
"graphql/*",
2024-02-06 22:18:58 +13:00
"bson",
"better-sqlite3",
"sqlite3",
"mysql",
"mysql2",
"oracle",
2024-05-29 22:29:43 +12:00
"oracledb",
"pg",
"pg-query-stream",
"pg-native",
2023-11-01 03:21:40 +13:00
],
}
await mkdir("dist", { recursive: true })
const hbsFiles = (async () => {
const dir = await readdir("./", { recursive: true })
const files = dir.filter(
entry => entry.endsWith(".hbs") || entry.endsWith("ivm.bundle.js")
)
const fileCopyPromises = files.map(file =>
copyFile(file, `dist/${path.basename(file)}`)
)
await Promise.all(fileCopyPromises)
})()
const oldClientVersions = (async () => {
try {
await cp("./build/oldClientVersions", "./dist/oldClientVersions", {
recursive: true,
})
} catch (e) {
if (e.code !== "EEXIST" && e.code !== "ENOENT") {
throw e
}
}
})()
const mainBuild = build({
...sharedConfig,
platform: "node",
2023-05-04 01:04:54 +12:00
outfile,
})
await Promise.all([hbsFiles, mainBuild, oldClientVersions])
2023-06-17 01:16:32 +12:00
fs.writeFileSync(
`dist/${path.basename(outfile)}.meta.json`,
JSON.stringify((await mainBuild).metafile)
)
console.log(
"\x1b[32m%s\x1b[0m",
`Build successfully in ${(Date.now() - start) / 1000} seconds`
)
2023-03-03 04:34:52 +13:00
}
if (require.main === module) {
2023-05-03 23:38:23 +12:00
const entry = argv["e"] || "./src/index.ts"
2023-05-04 02:45:29 +12:00
const outfile = `dist/${entry.split("/").pop().replace(".ts", ".js")}`
runBuild(entry, outfile)
} else {
module.exports = runBuild
}