chore(cli): bump version to 0.1.6#436
Merged
Merged
Conversation
There was a problem hiding this comment.
Code Review
This pull request increments the package version from 0.1.5 to 0.1.6 in package.json and the generated pkg-info.ts file. The reviewer suggests using atomic pushes for version updates to ensure consistency and advises against manual edits to generated files, recommending the use of scripts or CI automation to maintain a single source of truth.
| { | ||
| "name": "@astron-team/skillhub", | ||
| "version": "0.1.5", | ||
| "version": "0.1.6", |
| // Generated by scripts/generate-pkg-info.ts - do not edit by hand. | ||
| export const PKG_NAME = "@astron-team/skillhub" | ||
| export const PKG_VERSION = "0.1.5" | ||
| export const PKG_VERSION = "0.1.6" |
dongmucat
added a commit
that referenced
this pull request
May 14, 2026
The previous lockfile had all 138 dependency tarball URLs pinned to registry.npmmirror.com (leaked from a developer's ~/.npmrc). This made `bun install --frozen-lockfile` slow or hang on GitHub-hosted runners located outside China — observed on macos-latest in PR #436 (stuck 9+ minutes on bun install). Regenerated with the default registry so URLs resolve at install time via the client-configured registry instead of being baked into the lockfile.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
变更
发布 CLI 0.1.6,将版本号从 0.1.5 同步到:
cli/package.json→0.1.6cli/src/generated/pkg-info.ts→PKG_VERSION = "0.1.6"说明
pkg-info.ts由cli/scripts/generate-pkg-info.ts从package.json生成,本地无 bun 环境,故按生成模板手动同步,结果与脚本输出一致。合入后,单独推
cli-v0.1.6tag 触发release-cli.yml工作流执行 npm 发布与 GitHub Release。