1
0
Fork 0
mirror of synced 2024-06-29 19:41:03 +12:00
budibase/scripts/build.js

92 lines
2.2 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 glob = require("glob")
const fs = require("fs")
const path = require("path")
2023-03-03 05:03:56 +13:00
2023-03-03 04:34:52 +13:00
const { build } = require("esbuild")
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
2023-05-03 23:38:23 +12:00
var argv = require("minimist")(process.argv.slice(2))
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")
)
if (!fs.existsSync("../pro/src")) {
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
delete tsconfigPathPluginContent?.compilerOptions?.paths[
"@budibase/backend-core"
]
delete tsconfigPathPluginContent?.compilerOptions?.paths[
"@budibase/backend-core/*"
]
}
2023-05-04 01:04:54 +12:00
const sharedConfig = {
entryPoints: [entry],
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: [
TsconfigPathsPlugin({ tsconfig: tsconfigPathPluginContent }),
nodeExternalsPlugin(),
],
target: "node14",
preserveSymlinks: true,
2023-05-04 04:15:57 +12:00
loader: {
".svelte": "copy",
},
2023-06-17 01:16:32 +12:00
metafile: true,
external: [
"deasync",
"mock-aws-s3",
"nock",
2023-06-17 04:55:32 +12:00
"pino",
"koa-pino-logger",
"bull",
],
}
build({
...sharedConfig,
platform: "node",
2023-05-04 01:04:54 +12:00
outfile,
2023-06-17 01:16:32 +12:00
}).then(result => {
glob(`${process.cwd()}/src/**/*.hbs`, {}, (err, files) => {
for (const file of files) {
fs.copyFileSync(file, `${process.cwd()}/dist/${path.basename(file)}`)
}
console.log(
"\x1b[32m%s\x1b[0m",
`Build successfully in ${(Date.now() - start) / 1000} seconds`
)
})
2023-06-17 01:16:32 +12:00
fs.writeFileSync(
`dist/${path.basename(outfile)}.meta.json`,
JSON.stringify(result.metafile)
)
})
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
}