UNPKG
easyrlbot
Version:
latest (1.0.3)
1.0.3
1.0.2
1.0.1
0.5.5
0.5.4
0.5.3
0.5.2
0.5.1
0.5.0
0.4.2
0.4.1
0.4.0
0.3.0
0.1.2
0.1.1
0.1.0
A RLBot implementation in javascript with Sockets.
easyrlbot
/
esbuild.js
15 lines
(13 loc)
•
285 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
const
esbuild
=
require
(
"esbuild"
); esbuild .
build
({
entryPoints
: [
"./src/index.ts"
],
outdir
:
"./dist"
,
bundle
:
true
,
minify
:
true
,
platform
:
"node"
,
sourcemap
:
true
,
target
:
"node16"
,
external
: [
"flatbuffers"
], }) .
catch
(() => process.
exit
(
1
));