2023-04-24 19:24:09 +02:00
|
|
|
#!/usr/bin/node
|
|
|
|
|
2023-03-02 16:34:52 +01:00
|
|
|
const start = Date.now()
|
|
|
|
|
2023-03-02 17:03:56 +01:00
|
|
|
const glob = require("glob")
|
|
|
|
const fs = require("fs")
|
2023-04-27 20:00:01 +02:00
|
|
|
const path = require("path")
|
2023-03-02 17:03:56 +01:00
|
|
|
|
2023-03-02 16:34:52 +01:00
|
|
|
const { build } = require("esbuild")
|
|
|
|
|
2023-05-25 11:49:38 +02:00
|
|
|
const {
|
|
|
|
default: TsconfigPathsPlugin,
|
|
|
|
} = require("@esbuild-plugins/tsconfig-paths")
|
2023-06-16 15:26:34 +02:00
|
|
|
const { nodeExternalsPlugin } = require("esbuild-node-externals")
|
2023-03-02 16:34:52 +01:00
|
|
|
|
2023-05-03 13:38:23 +02:00
|
|
|
var argv = require("minimist")(process.argv.slice(2))
|
|
|
|
|
2023-04-27 20:00:01 +02:00
|
|
|
function runBuild(entry, outfile) {
|
2023-05-03 13:38:23 +02:00
|
|
|
const isDev = process.env.NODE_ENV !== "production"
|
2023-05-03 15:04:54 +02:00
|
|
|
const tsconfig = argv["p"] || `tsconfig.build.json`
|
2023-07-26 11:32:03 +02:00
|
|
|
const tsconfigPathPluginContent = JSON.parse(
|
|
|
|
fs.readFileSync(tsconfig, "utf-8")
|
|
|
|
)
|
|
|
|
|
|
|
|
if (!fs.existsSync("../pro/src")) {
|
2023-07-26 12:01:05 +02:00
|
|
|
// If we don't have pro, we cannot bundle backend-core.
|
|
|
|
// Otherwise, the main context will not be shared between libraries
|
2023-08-14 18:32:03 +02:00
|
|
|
delete tsconfigPathPluginContent?.compilerOptions?.paths[
|
2023-07-26 11:32:03 +02:00
|
|
|
"@budibase/backend-core"
|
|
|
|
]
|
2023-08-14 18:32:03 +02:00
|
|
|
delete tsconfigPathPluginContent?.compilerOptions?.paths[
|
2023-07-26 11:32:03 +02:00
|
|
|
"@budibase/backend-core/*"
|
|
|
|
]
|
|
|
|
}
|
2023-05-03 15:04:54 +02:00
|
|
|
|
2023-04-27 20:00:01 +02:00
|
|
|
const sharedConfig = {
|
|
|
|
entryPoints: [entry],
|
|
|
|
bundle: true,
|
2023-05-03 13:38:23 +02:00
|
|
|
minify: !isDev,
|
2023-05-03 18:15:57 +02:00
|
|
|
sourcemap: isDev,
|
2023-05-03 15:04:54 +02:00
|
|
|
tsconfig,
|
2023-07-26 11:32:03 +02:00
|
|
|
plugins: [
|
|
|
|
TsconfigPathsPlugin({ tsconfig: tsconfigPathPluginContent }),
|
|
|
|
nodeExternalsPlugin(),
|
|
|
|
],
|
2023-04-27 20:00:01 +02:00
|
|
|
target: "node14",
|
|
|
|
preserveSymlinks: true,
|
2023-05-03 18:15:57 +02:00
|
|
|
loader: {
|
|
|
|
".svelte": "copy",
|
|
|
|
},
|
2023-06-16 15:16:32 +02:00
|
|
|
metafile: true,
|
2023-06-08 18:45:45 +02:00
|
|
|
external: [
|
|
|
|
"deasync",
|
|
|
|
"mock-aws-s3",
|
|
|
|
"nock",
|
2023-06-16 18:55:32 +02:00
|
|
|
"pino",
|
|
|
|
"koa-pino-logger",
|
|
|
|
"bull",
|
2023-06-08 18:45:45 +02:00
|
|
|
],
|
2023-04-27 20:00:01 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
build({
|
|
|
|
...sharedConfig,
|
|
|
|
platform: "node",
|
2023-05-03 15:04:54 +02:00
|
|
|
outfile,
|
2023-06-16 15:16:32 +02:00
|
|
|
}).then(result => {
|
2023-04-27 20:00:01 +02:00
|
|
|
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-16 15:16:32 +02:00
|
|
|
|
|
|
|
fs.writeFileSync(
|
|
|
|
`dist/${path.basename(outfile)}.meta.json`,
|
|
|
|
JSON.stringify(result.metafile)
|
|
|
|
)
|
2023-04-27 20:00:01 +02:00
|
|
|
})
|
2023-03-02 16:34:52 +01:00
|
|
|
}
|
|
|
|
|
2023-04-27 20:00:01 +02:00
|
|
|
if (require.main === module) {
|
2023-05-03 13:38:23 +02:00
|
|
|
const entry = argv["e"] || "./src/index.ts"
|
2023-05-03 16:45:29 +02:00
|
|
|
const outfile = `dist/${entry.split("/").pop().replace(".ts", ".js")}`
|
|
|
|
runBuild(entry, outfile)
|
2023-04-27 20:00:01 +02:00
|
|
|
} else {
|
|
|
|
module.exports = runBuild
|
|
|
|
}
|