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
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"lint-staged": "^16.4.0",
"rimraf": "^6.1.3",
"simple-git-hooks": "^2.13.1",
"typescript-eslint": "^8.61.0"
"typescript-eslint": "^8.61.1"
},
"simple-git-hooks": {
"commit-msg": "pnpm exec commitlint --edit",
Expand Down
20 changes: 10 additions & 10 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -109,15 +109,15 @@
},
"homepage": "https://github.com/checkly/checkly-cli#readme",
"dependencies": {
"@oclif/core": "^4.11.4",
"@oclif/plugin-help": "^6.2.50",
"@oclif/core": "^4.11.7",
"@oclif/plugin-help": "^6.2.52",
"@oclif/plugin-warn-if-update-available": "^3.1.65",
"@typescript-eslint/typescript-estree": "^8.61.0",
"@typescript-eslint/typescript-estree": "^8.61.1",
"acorn": "^8.17.0",
"acorn-walk": "^8.3.5",
"archiver": "^8.0.0",
"ast-types": "^0.16.1",
"axios": "^1.17.0",
"axios": "^1.18.0",
"chalk": "^5.6.2",
"ci-info": "^4.4.0",
"conf": "^15.1.0",
Expand All @@ -140,26 +140,26 @@
"prompts": "^2.4.2",
"proxy-from-env": "^2.1.0",
"recast": "^0.23.11",
"semver": "^7.8.4",
"semver": "^7.8.5",
"string-width": "^8.2.1",
"tunnel": "^0.0.6",
"uuid": "^14.0.0",
"uuid": "^14.0.1",
"yaml": "^2.9.0"
},
"devDependencies": {
"@playwright/test": "^1.60.0",
"@playwright/test": "^1.61.0",
"@types/archiver": "^8.0.0",
"@types/debug": "^4.1.13",
"@types/luxon": "^3.7.1",
"@types/luxon": "^3.7.2",
"@types/node": "^22.19.17",
"@types/prompts": "^2.4.9",
"@types/semver": "^7.7.1",
"@types/tunnel": "^0.0.7",
"@types/ws": "^8.5.5",
"config": "^4.4.1",
"cross-env": "^10.1.0",
"nanoid": "^5.1.11",
"oclif": "^4.23.14",
"nanoid": "^5.1.15",
"oclif": "^4.23.16",
"rimraf": "^6.1.3",
"tar": "^7.5.16",
"typescript": "^6.0.3",
Expand Down
7 changes: 7 additions & 0 deletions packages/create-cli/e2e/run-create-cli.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,13 @@ export async function runChecklyCreateCli (options: {
CHECKLY_E2E_PROMPTS_INJECTIONS: promptsInjection?.length ? JSON.stringify(promptsInjection) : undefined,
CHECKLY_E2E_LOCAL_TEMPLATE_ROOT: path.join(__dirname, '../../../examples'),
CHECKLY_E2E_ISTTY: 'true',
// Set SHELL so @oclif/core's getShell() short-circuits instead of running
// determineWindowsShell(), which spawns `powershell.exe -Command Get-CimInstance`
// on every command. That spawn costs seconds per command on Windows and would
// otherwise dominate the e2e suite. Because extendEnv is false the child gets no
// SHELL unless we pass it here; on Linux process.env.SHELL is set, on Windows it
// is typically unset so we fall back to powershell.exe.
SHELL: process.env.SHELL ?? 'powershell.exe',
...env,
},
cwd: directory ?? process.cwd(),
Expand Down
8 changes: 4 additions & 4 deletions packages/create-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,10 @@
},
"homepage": "https://github.com/checkly/checkly-cli#readme",
"dependencies": {
"@oclif/core": "^4.11.4",
"@oclif/plugin-help": "^6.2.50",
"@oclif/core": "^4.11.7",
"@oclif/plugin-help": "^6.2.52",
"@oclif/plugin-warn-if-update-available": "^3.1.65",
"axios": "^1.17.0",
"axios": "^1.18.0",
"chalk": "^5.6.2",
"debug": "^4.4.3",
"execa": "^9.6.1",
Expand All @@ -77,7 +77,7 @@
"cross-env": "^10.1.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"uuid": "^14.0.0",
"uuid": "^14.0.1",
"vitest": "^3.2.6"
}
}
Loading
Loading