chore: remove zed extension and automation (#30628)

This commit is contained in:
Aiden Cline 2026-06-03 17:16:21 -05:00 committed by GitHub
commit d3d4335509
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
7 changed files with 1 additions and 215 deletions

View file

@ -24,13 +24,6 @@ async function prepareReleaseFiles() {
await Bun.file(file).write(pkg)
}
const extensionToml = fileURLToPath(new URL("../packages/extensions/zed/extension.toml", import.meta.url))
let toml = await Bun.file(extensionToml).text()
toml = toml.replace(/^version = "[^"]+"/m, `version = "${Script.version}"`)
toml = toml.replaceAll(/releases\/download\/v[^/]+\//g, `releases/download/v${Script.version}/`)
console.log("updated:", extensionToml)
await Bun.file(extensionToml).write(toml)
await $`bun install`
await $`./packages/sdk/js/script/build.ts`
}