Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .claude/commands/checkly-cli-update-dependencies.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,8 @@ All paths below are relative to the repo root unless noted otherwise.

## Phase 1: Survey what is outdated

- [ ] Run `pnpm outdated -r` to list outdated direct dependencies across all workspace packages.
- [ ] Run `pnpm install` first. `pnpm outdated` compares the **installed** tree against the registry, so without `node_modules` it reports every package as `missing (wanted …)` and the survey is worthless — it lists every direct dependency, including ones already up to date, rather than only what is actually outdated. A fresh git worktree never has `node_modules` (gitignored artifacts are not shared between worktrees), so this step is essential there; elsewhere it is idempotent and safe to repeat.
- [ ] Run `pnpm outdated -r` to list outdated direct dependencies across all workspace packages. If the `Current` column reads `missing` for everything, the install above did not happen — stop and install before going further.

## Phase 2: Choose target versions (compatibility- and embargo-aware)

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@
"@commitlint/config-conventional": "^20.5.3",
"@eslint/js": "^10.0.1",
"@stylistic/eslint-plugin": "^5.10.0",
"eslint": "^10.6.0",
"eslint": "^10.7.0",
"globals": "^17.7.0",
"lint-staged": "^16.4.0",
"rimraf": "^6.1.3",
"simple-git-hooks": "^2.13.1",
"typescript-eslint": "^8.62.1"
"typescript-eslint": "^8.64.0"
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit",
Expand Down
12 changes: 6 additions & 6 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@
"@oclif/core": "^4.11.14",
"@oclif/plugin-help": "^6.2.53",
"@oclif/plugin-warn-if-update-available": "^3.1.68",
"@typescript-eslint/typescript-estree": "^8.62.1",
"@typescript-eslint/typescript-estree": "^8.64.0",
"acorn": "^8.17.0",
"acorn-walk": "^8.3.5",
"archiver": "^8.0.0",
Expand All @@ -136,15 +136,15 @@
"log-symbols": "^7.0.1",
"luxon": "^3.7.2",
"minimatch": "^10.2.5",
"mqtt": "^5.15.1",
"mqtt": "^5.15.2",
"open": "^11.0.0",
"p-queue": "^9.3.1",
"prompts": "^2.4.2",
"proxy-from-env": "^2.1.0",
"recast": "^0.23.12",
"semver": "^7.8.5",
"socks-proxy-agent": "^10.1.0",
"string-width": "^8.2.1",
"string-width": "^8.2.2",
"uuid": "^14.0.1",
"yaml": "^2.9.0"
},
Expand All @@ -160,10 +160,10 @@
"config": "^4.4.2",
"cross-env": "^10.1.0",
"nanoid": "^5.1.16",
"oclif": "^4.23.24",
"oclif": "^4.23.27",
"rimraf": "^6.1.3",
"tar": "^7.5.19",
"tar": "^7.5.20",
"typescript": "^6.0.3",
"vitest": "^3.2.6"
"vitest": "^3.2.7"
}
}
2 changes: 1 addition & 1 deletion packages/create-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"uuid": "^14.0.1",
"vitest": "^3.2.6"
"vitest": "^3.2.7"
}
}
Loading
Loading