index : btroops | |
Virtual board game-aid for BattleTroops, an infantry combat simulator wargame published by FASA in 1989. |
aboutsummaryrefslogtreecommitdiff |
path: root/server.cjs
diff options
Diffstat (limited to 'server.cjs')
-rw-r--r-- | server.cjs | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -3,7 +3,7 @@ const { createServer } = require('esbuild-server'); const server = createServer( { bundle: true, - entryPoints: ['src/index.js', 'src/map.js'], + entryPoints: ['src/index.js', 'src/map.js', 'src/soldier_record_block.js'], ...(process.env.NODE_ENV !== 'test') && { outdir: 'build' } |