Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/fix-publish-changeset-verify.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@clickhouse/click-ui": patch
---

Fix `Publish to npm with OIDC` failing because the `prepare` lifecycle script ran `yarn changeset:verify`. Removed `yarn changeset:verify` from the `prepare` script so `npm publish` no longer aborts with "Couldn't locate any changeset."
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@
"lint:code:fix": "eslint src --report-unused-disable-directives --fix",
"lint:css": "stylelint \"src/**/*.css\"",
"lint:css:fix": "stylelint \"src/**/*.css\" --fix",
"prepare": "yarn test && yarn format && yarn lint && yarn changeset:verify && yarn circular-dependency:check",
"prepare": "yarn test && yarn format && yarn lint && yarn circular-dependency:check",
"prettify": "yarn format:fix",
"preview": "vite preview",
"storybook": "storybook dev -p 6006",
Expand Down
Loading