Conversation
The dev script name implies a specific tool or workflow, but the purpose is just watching for changes during development — watch says what it does. All nine packages updated. build-version had prepublishOnly/postpublish hooks left over from when each package had its own release process. Publishing is now owned by @shellicar/changes; those hooks have no role here and would be confusing if they ever ran.
Four scripts for auditing ecosystem package quality: check-tsconfig.sh: resolves effective TypeScript config via tsc --showConfig (so inherited settings count) and scores verbatimModuleSyntax, moduleDetection, moduleResolution, isolatedDeclarations, src/ include, and tsconfig.check.json. audit-package-json.sh: checks that each package has the publishing metadata right for this monorepo — correct repository URL, homepage pattern, exports structure and ordering, publishConfig, required files, and build script. check-biome.sh: verifies per-package biome.json is wired to the workspace root config (extends: "//", root: false) and has intentional linter rule overrides beyond just recommended. health.sh: aggregator. Runs all three per-package scripts and check-deps, merges results by package name, and emits a single JSON object with combined scores per package plus workspace deps. Single-package mode also supported. All scripts output JSON, exit non-zero on errors (not warnings), and support both full-workspace and single-package invocation.
pnpm audit --json runs at workspace root alongside check-deps. The severity breakdown (critical/high/moderate/low/total) lands in workspace.vuln in the output, parallel to workspace.deps. Single-package mode is unaffected -- both workspace checks are skipped when a package argument is given.
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.
No description provided.