Bundle with tsup and migrate to latest toolset#9
Merged
Conversation
…for CLI Bump the monorepo template to the modernized version from mrsimpson/template-typescript-monorepo PR#1, and introduce tsup as the CLI build tool so the binary is properly built and executable. The previous tsc-only build had never been run end-to-end; the CLI dist was missing entirely. tsup replaces tsc for the CLI package and confirms the binary works. - pnpm upgraded to v10; pnpm-workspace.yaml gets a catalog section for shared dependency versions (typescript, oxlint, prettier, vitest, tsx, tsup, rimraf) - ESLint + typescript-eslint replaced by oxlint (faster, simpler config); all per-package eslint.config.mjs files removed, root .oxlintrc.json added - nodemon replaced by `tsx watch` in dev scripts; nodemon.json files removed - commitlint added (commitlint.config.js) with conventional-commits preset - knip and changesets added to root devDependencies and scripts - All per-package devDependencies migrated to catalog: references - packages/core and packages/harnesses gain files/exports fields - packages/cli build script switches from `tsc` to `tsup`; tsup.config.ts bundles src/index.ts as ESM targeting Node 22, keeping external deps external so npm resolves them on install All consumers of the workspace packages are unaffected — public APIs and dist shapes are unchanged. The pnpm lockfile is regenerated for pnpm v10. https://claude.ai/code/session_013WVNnTozRKrc3SoP9oLC4N
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.