From e49b4d378e6b7b5e6c026a2feb215acc1342ee54 Mon Sep 17 00:00:00 2001 From: Brandon Corbett Date: Thu, 30 Jul 2026 23:52:08 -0400 Subject: [PATCH] chore(deps): pin prettier to an exact version prettier was ranged ^3.8.1. That range is what let the format check start failing on .github/ISSUE_TEMPLATE without anything in the repository changing: 3.9.6 treats code fences inside markdown differently, and the formatting rules moved under the repo when the lockfile did. CI runs npm ci, so it was never nondeterministic. The hazard is that a local npm install or a dependency bump moves the lockfile, and a formatting rule change arrives as a CI failure on the next unrelated pull request rather than as a diff anyone reviewed. Pinned at 3.9.6, which is what the lockfile already resolved to, so nothing reformats here. An upgrade now shows up as a deliberate one-line change with whatever reformatting it causes in the same diff. No changeset: this is tooling only and does not touch the published package. Verified with npm run format:check, npm run lint, npm run typecheck, npm test (159 passing), and npm run build. --- package-lock.json | 6 +++--- package.json | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package-lock.json b/package-lock.json index 175430c..aade0a3 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@seamless-auth/types", - "version": "0.4.0", + "version": "0.5.0", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "@seamless-auth/types", - "version": "0.4.0", + "version": "0.5.0", "license": "AGPL-3.0-only", "dependencies": { "zod": "^4.3.6" @@ -21,7 +21,7 @@ "eslint-config-prettier": "^10.1.8", "husky": "^9.1.7", "lint-staged": "^17.2.0", - "prettier": "^3.8.1", + "prettier": "3.9.6", "typescript": "^5.9.3", "vitest": "^4.1.1" }, diff --git a/package.json b/package.json index 2a51489..1aaba19 100644 --- a/package.json +++ b/package.json @@ -87,7 +87,7 @@ "eslint-config-prettier": "^10.1.8", "husky": "^9.1.7", "lint-staged": "^17.2.0", - "prettier": "^3.8.1", + "prettier": "3.9.6", "typescript": "^5.9.3", "vitest": "^4.1.1" },