FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
opencode/packages/opencode/script/build.ts at dev · argszero/opencode · GitHub
argszero
/
opencode
Public
forked from
anomalyco/opencode
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
opencode
/
packages
/
opencode
/
script
/
build.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
246 lines (225 loc) · 6.81 KB
Breadcrumbs
opencode
/
packages
/
opencode
/
script
/
build.ts
Copy path
File metadata and controls
executable file
·
246 lines (225 loc) · 6.81 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
#!/usr/bin/env bun
import
{
$
}
from
"bun"
import
path
from
"path"
import
{
fileURLToPath
}
from
"url"
import
{
createSolidTransformPlugin
}
from
"@opentui/solid/bun-plugin"
const
__filename
=
fileURLToPath
(
import
.
meta
.
url
)
const
__dirname
=
path
.
dirname
(
__filename
)
const
dir
=
path
.
resolve
(
__dirname
,
".."
)
process
.
chdir
(
dir
)
const
generated
=
await
import
(
"./generate.ts"
)
import
{
Script
}
from
"@opencode-ai/script"
import
pkg
from
"../package.json"
const
singleFlag
=
process
.
argv
.
includes
(
"--single"
)
const
baselineFlag
=
process
.
argv
.
includes
(
"--baseline"
)
const
skipInstall
=
process
.
argv
.
includes
(
"--skip-install"
)
const
sourcemapsFlag
=
process
.
argv
.
includes
(
"--sourcemaps"
)
const
plugin
=
createSolidTransformPlugin
(
)
const
skipEmbedWebUi
=
process
.
argv
.
includes
(
"--skip-embed-web-ui"
)
const
createEmbeddedWebUIBundle
=
async
(
)
=>
{
console
.
log
(
`Building Web UI to embed in the binary`
)
const
appDir
=
path
.
join
(
import
.
meta
.
dirname
,
"../../app"
)
const
dist
=
path
.
join
(
appDir
,
"dist"
)
await
$
`OPENCODE_CHANNEL=
${
Script
.
channel
}
bun run --cwd
${
appDir
}
build`
const
files
=
(
await
Array
.
fromAsync
(
new
Bun
.
Glob
(
"**/*"
)
.
scan
(
{
cwd
:
dist
}
)
)
)
.
map
(
(
file
)
=>
file
.
replaceAll
(
"\\"
,
"/"
)
)
.
filter
(
(
file
)
=>
!
file
.
endsWith
(
".map"
)
)
.
sort
(
)
const
imports
=
files
.
map
(
(
file
,
i
)
=>
{
const
spec
=
path
.
relative
(
dir
,
path
.
join
(
dist
,
file
)
)
.
replaceAll
(
"\\"
,
"/"
)
return
`import file_
${
i
}
from
${
JSON
.
stringify
(
spec
.
startsWith
(
"."
)
?
spec
:
`./
${
spec
}
`
)
}
with { type: "file" };`
}
)
const
entries
=
files
.
map
(
(
file
,
i
)
=>
`
${
JSON
.
stringify
(
file
)
}
: file_
${
i
}
,`
)
return
[
`// Import all files as file_$i with type: "file"`
,
...
imports
,
`// Export with original mappings`
,
`export default {`
,
...
entries
,
`}`
,
]
.
join
(
"\n"
)
}
const
embeddedFileMap
=
skipEmbedWebUi
?
null
:
await
createEmbeddedWebUIBundle
(
)
const
treeSitterWorker
=
await
Bun
.
file
(
fileURLToPath
(
import
.
meta
.
resolve
(
"@opentui/core/parser.worker"
)
)
)
.
text
(
)
const
allTargets
:
{
os
:
string
arch
:
"arm64"
|
"x64"
abi
?:
"musl"
avx2
?:
false
}
[
]
=
[
{
os
:
"linux"
,
arch
:
"arm64"
,
}
,
{
os
:
"linux"
,
arch
:
"x64"
,
}
,
{
os
:
"linux"
,
arch
:
"x64"
,
avx2
:
false
,
}
,
{
os
:
"linux"
,
arch
:
"arm64"
,
abi
:
"musl"
,
}
,
{
os
:
"linux"
,
arch
:
"x64"
,
abi
:
"musl"
,
}
,
{
os
:
"linux"
,
arch
:
"x64"
,
abi
:
"musl"
,
avx2
:
false
,
}
,
{
os
:
"darwin"
,
arch
:
"arm64"
,
}
,
{
os
:
"darwin"
,
arch
:
"x64"
,
}
,
{
os
:
"darwin"
,
arch
:
"x64"
,
avx2
:
false
,
}
,
{
os
:
"win32"
,
arch
:
"arm64"
,
}
,
{
os
:
"win32"
,
arch
:
"x64"
,
}
,
{
os
:
"win32"
,
arch
:
"x64"
,
avx2
:
false
,
}
,
]
const
targets
=
singleFlag
?
allTargets
.
filter
(
(
item
)
=>
{
if
(
item
.
os
!==
process
.
platform
||
item
.
arch
!==
process
.
arch
)
{
return
false
}
// When building for the current platform, prefer a single native binary by default.
// Baseline binaries require additional Bun artifacts and can be flaky to download.
if
(
item
.
avx2
===
false
)
{
return
baselineFlag
}
// also skip abi-specific builds for the same reason
if
(
item
.
abi
!==
undefined
)
{
return
false
}
return
true
}
)
:
allTargets
await
$
`rm -rf dist`
const
binaries
:
Record
<
string
,
string
>
=
{
}
if
(
!
skipInstall
)
{
await
$
`bun install --os="*" --cpu="*" @opentui/core@
${
pkg
.
dependencies
[
"@opentui/core"
]
}
`
await
$
`bun install --os="*" --cpu="*" @parcel/watcher@
${
pkg
.
dependencies
[
"@parcel/watcher"
]
}
`
await
$
`bun install --os="*" --cpu="*" @ff-labs/fff-bun@
${
pkg
.
dependencies
[
"@ff-labs/fff-bun"
]
}
`
}
for
(
const
item
of
targets
)
{
const
name
=
[
pkg
.
name
,
// changing to win32 flags npm for some reason
item
.
os
===
"win32"
?
"windows"
:
item
.
os
,
item
.
arch
,
item
.
avx2
===
false
?
"baseline"
:
undefined
,
item
.
abi
===
undefined
?
undefined
:
item
.
abi
,
]
.
filter
(
Boolean
)
.
join
(
"-"
)
console
.
log
(
`building
${
name
}
`
)
await
$
`mkdir -p dist/
${
name
}
/bin`
const
workerPath
=
"./src/cli/tui/worker.ts"
const
treeSitterWorkerPath
=
"opentui-tree-sitter-worker.js"
const
bunfsRoot
=
item
.
os
===
"win32"
?
"B:/~BUN/root/"
:
"/$bunfs/root/"
await
Bun
.
build
(
{
conditions
:
[
"bun"
,
"node"
]
,
tsconfig
:
"./tsconfig.json"
,
plugins
:
[
plugin
]
,
external
:
[
"node-gyp"
]
,
format
:
"esm"
,
minify
:
true
,
sourcemap
:
sourcemapsFlag
?
"linked"
:
"none"
,
splitting
:
true
,
compile
:
{
autoloadBunfig
:
false
,
autoloadDotenv
:
false
,
autoloadTsconfig
:
true
,
autoloadPackageJson
:
true
,
target
:
name
.
replace
(
pkg
.
name
,
"bun"
)
as
any
,
outfile
:
`dist/
${
name
}
/bin/opencode`
,
execArgv
:
[
`--user-agent=opencode/
${
Script
.
version
}
`
,
"--use-system-ca"
,
"--"
]
,
windows
:
{
}
,
}
,
files
:
{
[
treeSitterWorkerPath
]
:
treeSitterWorker
,
...
(
embeddedFileMap
?
{
"opencode-web-ui.gen.ts"
:
embeddedFileMap
}
:
{
}
)
,
}
,
entrypoints
:
[
"./src/index.ts"
,
workerPath
,
treeSitterWorkerPath
,
...
(
embeddedFileMap
?
[
"opencode-web-ui.gen.ts"
]
:
[
]
)
,
]
,
define
:
{
FFF_LIBC
:
JSON
.
stringify
(
item
.
abi
===
"musl"
?
"musl"
:
"gnu"
)
,
OPENCODE_VERSION
:
`'
${
Script
.
version
}
'`
,
OPENCODE_MODELS_DEV
:
generated
.
modelsData
,
OTUI_TREE_SITTER_WORKER_PATH
:
bunfsRoot
+
treeSitterWorkerPath
,
OPENCODE_WORKER_PATH
:
workerPath
,
OPENCODE_CHANNEL
:
`'
${
Script
.
channel
}
'`
,
OPENCODE_LIBC
:
item
.
os
===
"linux"
?
`'
${
item
.
abi
??
"glibc"
}
'`
:
""
,
...
(
item
.
os
===
"linux"
?
{
"process.env.OPENTUI_LIBC"
:
JSON
.
stringify
(
item
.
abi
??
"glibc"
)
}
:
{
}
)
,
}
,
}
)
// Smoke test: only run if binary is for current platform
if
(
item
.
os
===
process
.
platform
&&
item
.
arch
===
process
.
arch
&&
!
item
.
abi
)
{
const
binaryPath
=
`dist/
${
name
}
/bin/opencode`
console
.
log
(
`Running smoke test:
${
binaryPath
}
--version`
)
try
{
const
versionOutput
=
await
$
`
${
binaryPath
}
--version`
.
text
(
)
console
.
log
(
`Smoke test passed:
${
versionOutput
.
trim
(
)
}
`
)
}
catch
(
e
)
{
console
.
error
(
`Smoke test failed for
${
name
}
:`
,
e
)
process
.
exit
(
1
)
}
}
await
$
`rm -rf ./dist/
${
name
}
/bin/tui`
await
Bun
.
file
(
`dist/
${
name
}
/package.json`
)
.
write
(
JSON
.
stringify
(
{
name
,
version
:
Script
.
version
,
preferUnplugged
:
true
,
os
:
[
item
.
os
]
,
cpu
:
[
item
.
arch
]
,
...
(
item
.
abi
?
{
libc
:
[
item
.
abi
]
}
:
{
}
)
,
}
,
null
,
2
,
)
,
)
binaries
[
name
]
=
Script
.
version
}
if
(
Script
.
release
)
{
for
(
const
key
of
Object
.
keys
(
binaries
)
)
{
if
(
key
.
includes
(
"linux"
)
)
{
await
$
`tar -czf ../../
${
key
}
.tar.gz *`
.
cwd
(
`dist/
${
key
}
/bin`
)
}
else
{
await
$
`zip -r ../../
${
key
}
.zip *`
.
cwd
(
`dist/
${
key
}
/bin`
)
}
}
await
$
`gh release upload v
${
Script
.
version
}
./dist/*.zip ./dist/*.tar.gz --clobber --repo
${
process
.
env
.
GH_REPO
}
`
}
export
{
binaries
}
Back
|
FazBrowse Home
|
New Git URL