fix: rebuild dist to include callout icon fix#87
Merged
Conversation
PR #86 (fix/callout-icon-external-dependency) changed source only and never rebuilt dist/, so v6.1.2 shipped the exact same stale bundle as v6.1.1 — still pointing at the dead vtex-dev-portal-navigation DigitalOcean Space. Consumers bumping to v6.1.2 saw no change because the fix was never actually built into the published artifacts.
julia-rabello
added a commit
to vtexdocs/helpcenter
that referenced
this pull request
Jul 10, 2026
v6.1.2 never actually shipped the callout icon fix — dist/ wasn't rebuilt for that release (see vtexdocs/components#87). v6.1.3 contains the actual fix and yarn.lock is now regenerated to match.
4 tasks
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.
Description
Rebuilds
dist/(npm run build) so the callout-icon fix from #86 actually ships in a release.What problem is this solving?
#86 fixed the callout-icon rendering in source (
components.tsx/styles.module.css) but never rebuiltdist/. The release workflow (release-version.yml) only runsstandard-versionon merge — it does not runnpm run build— sov6.1.2shipped the exact same staledist/index.cssasv6.1.1, still pointing at the deadvtex-dev-portal-navigationDigitalOcean Space.Confirmed:
git log 542ec5e..ab16f4c -- dist/is empty, anddist/index.cssat thev6.1.2tag still containsdigitaloceanspaces.comURLs.This is why bumping
@vtexdocs/componentstov6.1.2inhelpcenter(see EDU-19009) had no visible effect — there was nothing fixed to bump to yet.Verification
dist/index.cssno longer contains anydigitaloceanspacesreferences, and includes the new.blockquoteIconclass.Types of changes