This repository was archived by the owner on May 29, 2026. It is now read-only.
fix(deps): sync package-lock.json with preset 3.5.0 (unbreaks deploy)#56
Merged
Merged
Conversation
PR #55 bumped @conduction/docusaurus-preset to ^3.4.0 in package.json without regenerating package-lock.json. CI uses `npm ci --legacy-peer-deps` which is strict about lockfile sync, so every Documentation workflow run on development since #55 merged has failed at the install step. The AI baseline never reached production. This commit: - Bumps the package.json range from ^3.4.0 to ^3.5.0 (the latest preset published — also matches what the rest of the fleet now uses). - Regenerates package-lock.json against the new range. - The cooldown rule in .npmrc (min-release-age=1) blocks fresh @conduction/* releases by default; this regen used --min-release-age=0 per the .npmrc comment. After this lands, the documentation workflow should install cleanly, the postbuild validate-ai-baseline check should pass, and the deploy job should publish the AI baseline (robots.txt, llms.txt, JSON-LD, og-conduction.png, sitemaps) to www.conduction.nl for the first time.
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 subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.
Summary
PR #55 bumped `@conduction/docusaurus-preset` to `^3.4.0` in `package.json` without regenerating `package-lock.json`. CI uses `npm ci --legacy-peer-deps` which fails if the two are out of sync. Result: every Documentation workflow run on `development` since #55 merged has failed at `npm ci`, and the AI baseline (robots.txt, llms.txt, JSON-LD, OG card, sitemaps) never reached production on www.conduction.nl.
Fix
Expected after merge
The next push to `development` will:
I'll verify the live state once the deploy completes.
Related
Test plan