chore: bump tiddlywiki-plugin-dev to ^0.5.3 - #124
Conversation
There was a problem hiding this comment.
Pull request overview
Updates the project’s tooling dependencies to use tiddlywiki-plugin-dev@^0.5.3, refreshes the pnpm lockfile accordingly, and modernizes the Husky prepare script invocation.
Changes:
- Bump
tiddlywiki-plugin-devfrom^0.4.4to^0.5.3. - Regenerate
pnpm-lock.yamlto reflect updated transitive dependencies. - Replace deprecated
husky installwithhuskyin thepreparescript.
Reviewed changes
Copilot reviewed 1 out of 2 changed files in this pull request and generated 2 comments.
| File | Description |
|---|---|
| package.json | Updates Husky prepare script and bumps tiddlywiki-plugin-dev version. |
| pnpm-lock.yaml | Lockfile refresh reflecting tiddlywiki-plugin-dev@0.5.3 and updated transitive tree. |
Files not reviewed (1)
- pnpm-lock.yaml: Language not supported
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
| "reset": "rimraf ./**/node_modules", | ||
| "clean": "rimraf dist", | ||
| "prepare": "husky install", | ||
| "prepare": "husky", |
There was a problem hiding this comment.
With Husky v9, running husky in prepare expects hook scripts under a .husky/ directory; the husky.hooks configuration in package.json is not used by modern Husky versions. Since this repo doesn’t include a .husky/ directory, the intended pre-commit hook likely won’t run—consider migrating to .husky/pre-commit (and friends) or adjusting the Husky configuration accordingly.
| chokidar@5.0.0: | ||
| resolution: {integrity: sha512-TQMmc3w+5AxjpL8iIiwebF73dRDF4fBIieAqGn9RGCWaEVwQ6Fb2cGe31Yns0RRIzii5goJ1Y7xbMwo1TxMplw==} | ||
| engines: {node: '>= 20.19.0'} |
There was a problem hiding this comment.
The updated lockfile pulls in dependencies with a stricter Node requirement than the project-level engines.node >=20 suggests (e.g., chokidar@5 requires Node >=20.19.0, and inquirer@13 requires >=20.12.0). If contributors/CI use an older Node 20.x, installs may warn or fail; consider aligning the project’s documented minimum Node version with these transitive engine constraints.
Unified update: tiddlywiki-plugin-dev -> ^0.5.3; run
pnpm install --lockfile-only --no-frozen-lockfile; replace deprecatedhusky installwithhuskywhere applicable.