/
outbreak
/
kilocode
Обзор
Документация
Войти
/
outbreak
/
kilocode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/shared/package.ts
15 строк
715 B
Kevin van Dijk
Merge branch 'upstream-at-v3.27.0' into v3.27.0
10 сен 2025, 13:14
10 сен 2025, 13:14
0b00846
Код
Авторство
О чём код?
import { publisher, name, version } from "../package.json" // These ENV variables can be defined by ESBuild when building the extension // in order to override the values in package.json. This allows us to build // different extension variants with the same package.json file. // The build process still needs to emit a modified package.json for consumption // by VSCode, but that build artifact is not used during the transpile step of // the build, so we still need this override mechanism. export const Package = { publisher, name: process.env.PKG_NAME || name, version: process.env.PKG_VERSION || version, outputChannel: process.env.PKG_OUTPUT_CHANNEL || "Kilo-Code", sha: process.env.PKG_SHA, } as const