Files
copilotkit__copilotkit/release.config.json
Tyler Slaton 2a880fb09c ci: add scope dropdown (monorepo, cli, angular) to release workflows
Each release scope has its own packages, version source, and
independent version track:
- monorepo: 12 core @copilotkit/* packages (shared version)
- cli: copilotkit CLI (independent version)
- angular: @copilotkitnext/angular (independent version)

Branch pattern is now release/publish/<scope>/v<version> and git
tags use <scope>/v<version> for non-monorepo scopes.
2026-04-10 23:04:48 -07:00

34 lines
855 B
JSON

{
"prereleaseTag": "canary",
"scopes": {
"monorepo": {
"packages": [
"@copilotkit/a2ui-renderer",
"@copilotkit/core",
"@copilotkit/react-core",
"@copilotkit/react-textarea",
"@copilotkit/react-ui",
"@copilotkit/runtime",
"@copilotkit/runtime-client-gql",
"@copilotkit/sdk-js",
"@copilotkit/shared",
"@copilotkit/sqlite-runner",
"@copilotkit/voice",
"@copilotkit/web-inspector"
],
"versionSource": "@copilotkit/react-core",
"sharedVersion": true
},
"cli": {
"packages": ["copilotkit"],
"versionSource": "copilotkit",
"sharedVersion": false
},
"angular": {
"packages": ["@copilotkitnext/angular"],
"versionSource": "@copilotkitnext/angular",
"sharedVersion": false
}
}
}