X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=bundle.js;h=dea5a97f58449ec15ef63971d195ac9cded35e33;hb=6a148c8d7d7190092d16c17251023f24a9508ec4;hp=ede14a96878f585ceccbed7208cd61038dbce685;hpb=44ebef4c21047693fbc194aa9b7f90578465e29a;p=e-mobility-charging-stations-simulator.git diff --git a/bundle.js b/bundle.js index ede14a96..dea5a97f 100644 --- a/bundle.js +++ b/bundle.js @@ -1,6 +1,7 @@ /* eslint-disable n/no-unpublished-import */ import { env } from 'node:process'; +import chalk from 'chalk'; import { build } from 'esbuild'; import { clean } from 'esbuild-plugin-clean'; import { copy } from 'esbuild-plugin-copy'; @@ -8,15 +9,37 @@ import { copy } from 'esbuild-plugin-copy'; const isDevelopmentBuild = env.BUILD === 'development'; const sourcemap = !!isDevelopmentBuild; +console.info(chalk.green(`Building in ${isDevelopmentBuild ? 'development' : 'production'} mode`)); +console.time('Build time'); (async () => { await build({ entryPoints: ['./src/start.ts', './src/charging-station/ChargingStationWorker.ts'], bundle: true, platform: 'node', format: 'esm', - external: ['@mikro-orm/*'], + external: [ + '@mikro-orm/*', + 'ajv', + 'ajv-formats', + 'basic-ftp', + 'chalk', + 'date-fns', + 'http-status-codes', + 'just-merge', + 'logform', + 'mnemonist/*', + 'mongodb', + 'node:*', + 'poolifier', + 'tar', + 'winston', + 'winston/*', + 'winston-daily-rotate-file', + 'ws', + ], minify: true, sourcemap, + entryNames: '[name]', outdir: './dist', plugins: [ clean({ @@ -52,3 +75,4 @@ const sourcemap = !!isDevelopmentBuild; ], }); })(); +console.timeEnd('Build time');