/
githubmirror
/
ui
Обзор
Документация
Войти
/
githubmirror
/
ui
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/changeset-version.js
12 строк
699 B
shadcn
ci: update changesets
31 янв 2026, 14:04
31 янв 2026, 14:04
1990280
Код
Авторство
О чём код?
// ORIGINALLY FROM CLOUDFLARE WRANGLER: // https://github.com/cloudflare/wrangler2/blob/main/.github/changeset-version.js import { execSync } from "child_process" // This script is used by the `release.yml` workflow to update the version of the packages being released. // The standard step is only to run `changeset version` but this does not update the pnpm-lock.yaml file. // So we also run `pnpm install`, which does this update. // This is a workaround until this is handled automatically by `changeset version`. // See https://github.com/changesets/changesets/issues/421. execSync("npx changeset version", { stdio: "inherit" }) execSync("pnpm install --lockfile-only", { stdio: "inherit" })