FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
browsercode/packages/opencode/script/publish.ts at main · code2labgit/browsercode · GitHub
code2labgit
/
browsercode
Public
forked from
browser-use/browsercode
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
browsercode
/
packages
/
opencode
/
script
/
publish.ts
Copy path
More file actions
More file actions
Latest commit
History
History
History
executable file
·
213 lines (198 loc) · 7.73 KB
Breadcrumbs
browsercode
/
packages
/
opencode
/
script
/
publish.ts
Copy path
File metadata and controls
executable file
·
213 lines (198 loc) · 7.73 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
#!/usr/bin/env bun
import
{
$
}
from
"bun"
import
pkg
from
"../package.json"
import
{
Script
}
from
"@opencode-ai/script"
import
{
fileURLToPath
}
from
"url"
const
dir
=
fileURLToPath
(
new
URL
(
".."
,
import
.
meta
.
url
)
)
process
.
chdir
(
dir
)
async
function
published
(
name
:
string
,
version
:
string
)
{
return
(
await
$
`npm view
${
name
}
@
${
version
}
version`
.
nothrow
(
)
)
.
exitCode
===
0
}
async
function
publish
(
dir
:
string
,
name
:
string
,
version
:
string
)
{
// GitHub artifact downloads can drop the executable bit, and Docker uses the
// unpacked dist binaries directly rather than the published tarball.
if
(
process
.
platform
!==
"win32"
)
await
$
`chmod -R 755 .`
.
cwd
(
dir
)
if
(
await
published
(
name
,
version
)
)
{
console
.
log
(
`already published
${
name
}
@
${
version
}
`
)
return
}
await
$
`bun pm pack`
.
cwd
(
dir
)
await
$
`npm publish *.tgz --access public --tag
${
Script
.
channel
}
`
.
cwd
(
dir
)
}
const
binaries
:
Record
<
string
,
string
>
=
{
}
for
(
const
filepath
of
new
Bun
.
Glob
(
"*/package.json"
)
.
scanSync
(
{
cwd
:
"./dist"
}
)
)
{
const
pkg
=
await
Bun
.
file
(
`./dist/
${
filepath
}
`
)
.
json
(
)
binaries
[
pkg
.
name
]
=
pkg
.
version
}
console
.
log
(
"binaries"
,
binaries
)
const
version
=
Object
.
values
(
binaries
)
[
0
]
await
$
`mkdir -p ./dist/
${
pkg
.
name
}
`
await
$
`mkdir -p ./dist/
${
pkg
.
name
}
/bin`
await
$
`cp ./script/postinstall.mjs ./dist/
${
pkg
.
name
}
/postinstall.mjs`
await
Bun
.
file
(
`./dist/
${
pkg
.
name
}
/LICENSE`
)
.
write
(
await
Bun
.
file
(
"../../LICENSE"
)
.
text
(
)
)
await
Bun
.
file
(
`./dist/
${
pkg
.
name
}
/bin/
${
pkg
.
name
}
.exe`
)
.
write
(
[
`echo "Error:
${
pkg
.
name
}
-ai's postinstall script was not run." >&2`
,
'echo "" >&2'
,
'echo "This occurs when using --ignore-scripts during installation, or when using a" >&2'
,
'echo "package manager like pnpm that does not run postinstall scripts by default." >&2'
,
'echo "" >&2'
,
'echo "To fix this, run the postinstall script manually:" >&2'
,
`echo " cd node_modules/
${
pkg
.
name
}
-ai && node postinstall.mjs" >&2`
,
'echo "" >&2'
,
`echo "Or reinstall
${
pkg
.
name
}
-ai without the --ignore-scripts flag." >&2`
,
"exit 1"
,
""
,
]
.
join
(
"\n"
)
,
)
await
Bun
.
file
(
`./dist/
${
pkg
.
name
}
/package.json`
)
.
write
(
JSON
.
stringify
(
{
name
:
pkg
.
name
+
"-ai"
,
bin
:
{
[
pkg
.
name
]
:
`./bin/
${
pkg
.
name
}
.exe`
,
}
,
scripts
:
{
postinstall
:
"node ./postinstall.mjs"
,
}
,
version
:
version
,
license
:
pkg
.
license
,
os
:
[
"darwin"
,
"linux"
,
"win32"
]
,
cpu
:
[
"arm64"
,
"x64"
]
,
optionalDependencies
:
binaries
,
}
,
null
,
2
,
)
,
)
const
tasks
=
Object
.
entries
(
binaries
)
.
map
(
async
(
[
name
]
)
=>
{
await
publish
(
`./dist/
${
name
}
`
,
name
,
binaries
[
name
]
)
}
)
await
Promise
.
all
(
tasks
)
await
publish
(
`./dist/
${
pkg
.
name
}
`
,
`
${
pkg
.
name
}
-ai`
,
version
)
const
image
=
"ghcr.io/anomalyco/opencode"
const
platforms
=
"linux/amd64,linux/arm64"
const
tags
=
[
`
${
image
}
:
${
version
}
`
,
`
${
image
}
:
${
Script
.
channel
}
`
]
const
tagFlags
=
tags
.
flatMap
(
(
t
)
=>
[
"-t"
,
t
]
)
// registries
if
(
!
Script
.
preview
)
{
await
$
`docker buildx build --platform
${
platforms
}
${
tagFlags
}
--push .`
// Calculate SHA values
const
arm64Sha
=
await
$
`sha256sum ./dist/opencode-linux-arm64.tar.gz | cut -d' ' -f1`
.
text
(
)
.
then
(
(
x
)
=>
x
.
trim
(
)
)
const
x64Sha
=
await
$
`sha256sum ./dist/opencode-linux-x64.tar.gz | cut -d' ' -f1`
.
text
(
)
.
then
(
(
x
)
=>
x
.
trim
(
)
)
const
macX64Sha
=
await
$
`sha256sum ./dist/opencode-darwin-x64.zip | cut -d' ' -f1`
.
text
(
)
.
then
(
(
x
)
=>
x
.
trim
(
)
)
const
macArm64Sha
=
await
$
`sha256sum ./dist/opencode-darwin-arm64.zip | cut -d' ' -f1`
.
text
(
)
.
then
(
(
x
)
=>
x
.
trim
(
)
)
const
[
pkgver
,
_subver
=
""
]
=
Script
.
version
.
split
(
/
(
-
.
*
)
/
,
2
)
// arch
const
binaryPkgbuild
=
[
"# Maintainer: dax"
,
"# Maintainer: adam"
,
""
,
"pkgname='opencode-bin'"
,
`pkgver=
${
pkgver
}
`
,
`_subver=
${
_subver
}
`
,
"options=('!debug' '!strip')"
,
"pkgrel=1"
,
"pkgdesc='The AI coding agent built for the terminal.'"
,
"url='https://github.com/anomalyco/opencode'"
,
"arch=('aarch64' 'x86_64')"
,
"license=('MIT')"
,
"provides=('opencode')"
,
"conflicts=('opencode')"
,
"depends=('ripgrep')"
,
""
,
`source_aarch64=("\${pkgname}_\${pkgver}_aarch64.tar.gz::https://github.com/anomalyco/opencode/releases/download/v\${pkgver}\${_subver}/opencode-linux-arm64.tar.gz")`
,
`sha256sums_aarch64=('
${
arm64Sha
}
')`
,
`source_x86_64=("\${pkgname}_\${pkgver}_x86_64.tar.gz::https://github.com/anomalyco/opencode/releases/download/v\${pkgver}\${_subver}/opencode-linux-x64.tar.gz")`
,
`sha256sums_x86_64=('
${
x64Sha
}
')`
,
""
,
"package() {"
,
' install -Dm755 ./opencode "${pkgdir}/usr/bin/opencode"'
,
"}"
,
""
,
]
.
join
(
"\n"
)
for
(
const
[
pkg
,
pkgbuild
]
of
[
[
"opencode-bin"
,
binaryPkgbuild
]
]
)
{
for
(
let
i
=
0
;
i
<
30
;
i
++
)
{
try
{
await
$
`rm -rf ./dist/aur-
${
pkg
}
`
await
$
`git clone ssh://aur@aur.archlinux.org/
${
pkg
}
.git ./dist/aur-
${
pkg
}
`
await
$
`cd ./dist/aur-
${
pkg
}
&& git checkout master`
await
Bun
.
file
(
`./dist/aur-
${
pkg
}
/PKGBUILD`
)
.
write
(
pkgbuild
)
await
$
`cd ./dist/aur-
${
pkg
}
&& makepkg --printsrcinfo > .SRCINFO`
await
$
`cd ./dist/aur-
${
pkg
}
&& git add PKGBUILD .SRCINFO`
if
(
(
await
$
`cd ./dist/aur-
${
pkg
}
&& git diff --cached --quiet`
.
nothrow
(
)
)
.
exitCode
===
0
)
break
await
$
`cd ./dist/aur-
${
pkg
}
&& git commit -m "Update to v
${
Script
.
version
}
"`
await
$
`cd ./dist/aur-
${
pkg
}
&& git push`
break
}
catch
{
continue
}
}
}
// Homebrew formula
const
homebrewFormula
=
[
"# typed: false"
,
"# frozen_string_literal: true"
,
""
,
"# This file was generated by GoReleaser. DO NOT EDIT."
,
"class Opencode < Formula"
,
` desc "The AI coding agent built for the terminal."`
,
` homepage "https://github.com/anomalyco/opencode"`
,
` version "
${
Script
.
version
.
split
(
"-"
)
[
0
]
}
"`
,
""
,
` depends_on "ripgrep"`
,
""
,
" on_macos do"
,
" if Hardware::CPU.intel?"
,
` url "https://github.com/anomalyco/opencode/releases/download/v
${
Script
.
version
}
/opencode-darwin-x64.zip"`
,
` sha256 "
${
macX64Sha
}
"`
,
""
,
" def install"
,
' bin.install "opencode"'
,
" end"
,
" end"
,
" if Hardware::CPU.arm?"
,
` url "https://github.com/anomalyco/opencode/releases/download/v
${
Script
.
version
}
/opencode-darwin-arm64.zip"`
,
` sha256 "
${
macArm64Sha
}
"`
,
""
,
" def install"
,
' bin.install "opencode"'
,
" end"
,
" end"
,
" end"
,
""
,
" on_linux do"
,
" if Hardware::CPU.intel? and Hardware::CPU.is_64_bit?"
,
` url "https://github.com/anomalyco/opencode/releases/download/v
${
Script
.
version
}
/opencode-linux-x64.tar.gz"`
,
` sha256 "
${
x64Sha
}
"`
,
" def install"
,
' bin.install "opencode"'
,
" end"
,
" end"
,
" if Hardware::CPU.arm? and Hardware::CPU.is_64_bit?"
,
` url "https://github.com/anomalyco/opencode/releases/download/v
${
Script
.
version
}
/opencode-linux-arm64.tar.gz"`
,
` sha256 "
${
arm64Sha
}
"`
,
" def install"
,
' bin.install "opencode"'
,
" end"
,
" end"
,
" end"
,
"end"
,
""
,
""
,
]
.
join
(
"\n"
)
const
token
=
process
.
env
.
GITHUB_TOKEN
if
(
!
token
)
{
console
.
error
(
"GITHUB_TOKEN is required to update homebrew tap"
)
process
.
exit
(
1
)
}
const
tap
=
`https://x-access-token:
${
token
}
@github.com/anomalyco/homebrew-tap.git`
await
$
`rm -rf ./dist/homebrew-tap`
await
$
`git clone
${
tap
}
./dist/homebrew-tap`
await
Bun
.
file
(
"./dist/homebrew-tap/opencode.rb"
)
.
write
(
homebrewFormula
)
await
$
`cd ./dist/homebrew-tap && git add opencode.rb`
if
(
(
await
$
`cd ./dist/homebrew-tap && git diff --cached --quiet`
.
nothrow
(
)
)
.
exitCode
!==
0
)
{
await
$
`cd ./dist/homebrew-tap && git commit -m "Update to v
${
Script
.
version
}
"`
await
$
`cd ./dist/homebrew-tap && git push`
}
}
Back
|
FazBrowse Home
|
New Git URL