-
Notifications
You must be signed in to change notification settings - Fork 839
/
Copy pathbuild.js
29 lines (25 loc) · 1 KB
/
build.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
const esbuild = require('esbuild');
/**
* Function to build the project using esbuild.
* This bundles the source files and generates an optimized output for the Node.js platform.
*
* @returns {Promise<void>} - Resolves when the build process is successful.
*/
const buildProject = async () => {
try {
// Trigger the build process using esbuild.
await esbuild.build({
entryPoints: ['index.js'], // Entry point of the application
bundle: true, // Bundle all dependencies into a single file
platform: 'node', // Target platform is Node.js
outfile: 'dist/index.js' // Output directory and file for the bundled code
});
console.log('Build succeeded.');
} catch (error) {
// Log the error and exit the process with a non-zero exit code.
console.error('Error building:', error.message);
process.exit(1);
}
};
// Call the buildProject function to initiate the build.
buildProject();