We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changeset의 config.json 파일은 올바르게 작성되어 있지만, ignore 옵션이 작동하지 않는 현상을 발견했습니다.
config.json
ignore
npx changeset publish
.changeset/config.json
npx changeset
@sipe-team/package-name
@sipe-team/package-name이 ignore 목록에 추가되었음에도 불구하고, .template에 있는 package.json 파일이 CI 환경에 npx changeset publish에 포함되어 배포가 시도됩니다.
.template
package.json
CI
ignore 목록에 추가된 패키지는 배포 과정에서 무시되어야 하며, CI 환경에서 발생하는 문제를 해결할 수 있어야 합니다.
조치로 두 가지 생각해봤는데
pnpm changeset version
--ignore
.template/component/package.json
private: true
The text was updated successfully, but these errors were encountered:
froggy1014
Successfully merging a pull request may close this issue.
Bug Description
Changeset의
config.json
파일은 올바르게 작성되어 있지만,ignore
옵션이 작동하지 않는 현상을 발견했습니다.Steps to Reproduce
npx changeset publish
를 실행할 때 발생합니다..changeset/config.json
파일에ignore
옵션을 추가했습니다.npx changeset
명령어를 실행하여@sipe-team/package-name
이 리스팅되지 않는 것을 확인했습니다.Actual Result
@sipe-team/package-name
이ignore
목록에 추가되었음에도 불구하고,.template
에 있는package.json
파일이CI
환경에npx changeset publish
에 포함되어 배포가 시도됩니다.Expected Result
ignore
목록에 추가된 패키지는 배포 과정에서 무시되어야 하며, CI 환경에서 발생하는 문제를 해결할 수 있어야 합니다.Screenshots and Logs
Environment Information
Additional Notes
조치로 두 가지 생각해봤는데
pnpm changeset version
에 [--ignore
에 플래그를 사용] (https://github.com/changesets/changesets/blob/main/docs/command-line-options.md#version) ❌.template/component/package.json
에private: true
를 추가하고, 스크립트 실행 시 삭제The text was updated successfully, but these errors were encountered: