budibase/scripts/build.js

138 lines
3.8 KiB
JavaScript
Raw Normal View History

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 fs = require("fs")
const { readdir, copyFile, mkdir } = require('node:fs/promises');
const path = require("path")
2023-03-02 17:03:56 +01:00
2023-03-02 16:34:52 +01:00
const { build } = require("esbuild")
const { compile } = require('svelte/compiler')
2023-03-02 16:34:52 +01:00
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
const svelteCompilePlugin = {
name: 'svelteCompile',
setup(build) {
// This resolve handler is necessary to bundle the Svelte runtime into the the final output,
// otherwise the bundled script will attempt to resolve it at runtime
build.onResolve({ filter: /svelte\/internal/ }, async () => {
return { path: `${process.cwd()}/../../node_modules/svelte/src/runtime/internal/ssr.js` }
})
// 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 11:02:44 +01:00
var { argv } = require("yargs")
2023-05-03 13:38:23 +02:00
async 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`
const tsconfigPathPluginContent = JSON.parse(
fs.readFileSync(tsconfig, "utf-8")
)
2023-08-10 10:48:18 +02:00
if (
2023-10-31 14:49:40 +01:00
!fs.existsSync(path.join(__dirname, "../packages/pro/src")) &&
2023-08-10 10:48:18 +02:00
tsconfigPathPluginContent.compilerOptions?.paths
) {
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:44:24 +02:00
delete tsconfigPathPluginContent?.compilerOptions?.paths?.[
"@budibase/backend-core"
]
2023-08-14 18:44:24 +02:00
delete tsconfigPathPluginContent?.compilerOptions?.paths?.[
"@budibase/backend-core/*"
]
}
2023-05-03 15:04:54 +02:00
const sharedConfig = {
entryPoints: [entry],
2023-10-03 09:49:58 +02:00
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,
plugins: [
svelteCompilePlugin,
TsconfigPathsPlugin({ tsconfig: tsconfigPathPluginContent }),
nodeExternalsPlugin(),
],
preserveSymlinks: true,
loader: {
},
2023-10-03 09:49:58 +02:00
metafile: true,
2023-10-31 15:21:40 +01:00
external: [
"deasync",
"mock-aws-s3",
"nock",
"bull",
"pouchdb",
"bcrypt",
"bcryptjs",
2023-12-18 18:41:15 +01:00
"graphql/*",
2024-02-06 10:18:58 +01:00
"bson",
2023-10-31 15:21:40 +01: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 mainBuild = build({
...sharedConfig,
platform: "node",
2023-05-03 15:04:54 +02:00
outfile,
})
await Promise.all([hbsFiles, mainBuild])
2023-06-16 15:16:32 +02: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-02 16:34:52 +01: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)
} else {
module.exports = runBuild
}