chore(sync): onboard socket-mcp to fleet conventions + extend canonical tsconfig base#177
Merged
John-David Dalton (jdalton) merged 2 commits intoMay 12, 2026
Merged
Conversation
Cascade fleet-canonical scaffolding from socket-wheelhouse: .config/ (tsconfig.base.json, oxlint-plugin, rolldown stub, taze config, lockstep + wheelhouse schemas), .git-hooks/ (commit-msg, pre-commit, pre-push + tests), .husky/ hooks, docs/claude.md/ reference pages, scripts/*.mts utilities (fix, security, update, lockstep, validators), and .gitattributes marking cascaded files as linguist-generated.
Root tsconfig.json now extends .config/tsconfig.base.json instead of duplicating its compiler options. Repo-specific divergences remain at root: nodenext module resolution, allowJs/checkJs, removeComments, stripInternal, noEmit, allowImportingTsExtensions, rewriteRelativeImportExtensions, noImplicitReturns: false. Update exclude lists in both tsconfig.json and tsconfig.declaration.json to skip the new fleet-cascaded scaffolding (.claude/, .git-hooks/, .husky/, docs/, scripts/**/*.mts) — those carry their own tsconfig chains and pull deps socket-mcp doesn't ship.
John-David Dalton (jdalton)
added a commit
that referenced
this pull request
May 12, 2026
socket-mcp migrated to pnpm during PR #177 (fleet onboarding). The npm package-lock.json (239KB) was left behind unreferenced — pnpm maintains pnpm-lock.yaml as the source of truth. - Delete root package-lock.json. - Drop it from package.json files array (was shipping a stale npm lockfile in published tarballs).
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.
Summary
socket-wheelhouse:.config/(tsconfig.base.json, oxlint-plugin, rolldown stub, taze config, lockstep + wheelhouse schemas),.git-hooks/(commit-msg, pre-commit, pre-push + tests),.husky/hooks,docs/claude.md/reference pages,scripts/*.mtsutilities, and.gitattributesmarking cascaded fileslinguist-generated.tsconfig.jsonto extend.config/tsconfig.base.json(heavy migration — repo never had a fleet base before). Repo-specific divergences kept at root: nodenext module resolution, allowJs/checkJs, removeComments, stripInternal, noEmit, allowImportingTsExtensions, rewriteRelativeImportExtensions, noImplicitReturns: false.tsconfig.jsonandtsconfig.declaration.jsonto skip the new fleet-cascaded scaffolding (.claude/,.git-hooks/,.husky/,docs/,scripts/**/*.mts) — those carry their own tsconfig chains and pull deps socket-mcp doesn't ship.Test plan
pnpm test:tsc— 0 errors against repo sources (index.ts,lib/, tests,mock-client/,scripts/check-versions.ts).pnpm run build:types— declaration build clean.