checkly 9.0.0 → 9.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/bin/check-node-version.cjs +21 -0
- package/bin/launch.cjs +16 -0
- package/bin/run.cjs +32 -0
- package/dist/ai-context/skills-command/references/configure-playwright-checks.md +1 -1
- package/dist/commands/authCommand.d.ts +6 -0
- package/dist/commands/authCommand.js +17 -0
- package/dist/commands/authCommand.js.map +1 -1
- package/dist/commands/baseCommand.d.ts +11 -0
- package/dist/commands/baseCommand.js +34 -13
- package/dist/commands/baseCommand.js.map +1 -1
- package/dist/commands/debug/parse-project.d.ts +1 -1
- package/dist/commands/debug/parse-project.js +41 -15
- package/dist/commands/debug/parse-project.js.map +1 -1
- package/dist/commands/deploy.js +5 -24
- package/dist/commands/deploy.js.map +1 -1
- package/dist/commands/destroy.js +2 -1
- package/dist/commands/destroy.js.map +1 -1
- package/dist/commands/import/apply.js +2 -1
- package/dist/commands/import/apply.js.map +1 -1
- package/dist/commands/import/cancel.js +2 -1
- package/dist/commands/import/cancel.js.map +1 -1
- package/dist/commands/import/commit.js +2 -1
- package/dist/commands/import/commit.js.map +1 -1
- package/dist/commands/import/plan.js +11 -29
- package/dist/commands/import/plan.js.map +1 -1
- package/dist/commands/pw-test.js +5 -24
- package/dist/commands/pw-test.js.map +1 -1
- package/dist/commands/test.js +5 -24
- package/dist/commands/test.js.map +1 -1
- package/dist/commands/trigger.js +10 -3
- package/dist/commands/trigger.js.map +1 -1
- package/dist/commands/validate.js +5 -22
- package/dist/commands/validate.js.map +1 -1
- package/dist/helpers/command-style.d.ts +2 -0
- package/dist/helpers/command-style.js +13 -0
- package/dist/helpers/command-style.js.map +1 -1
- package/dist/services/check-parser/cache-hash.d.ts +5 -2
- package/dist/services/check-parser/cache-hash.js +2 -2
- package/dist/services/check-parser/cache-hash.js.map +1 -1
- package/dist/services/check-parser/package-prune.d.ts +12 -4
- package/dist/services/check-parser/package-prune.js +184 -76
- package/dist/services/check-parser/package-prune.js.map +1 -1
- package/dist/services/checkly-config-loader.d.ts +60 -18
- package/dist/services/checkly-config-loader.js +131 -45
- package/dist/services/checkly-config-loader.js.map +1 -1
- package/dist/services/config-diagnostics.d.ts +31 -0
- package/dist/services/config-diagnostics.js +57 -0
- package/dist/services/config-diagnostics.js.map +1 -0
- package/dist/services/embedded-packages/spec.js +2 -2
- package/dist/services/embedded-packages/spec.js.map +1 -1
- package/dist/services/runner/registries.d.ts +17 -5
- package/dist/services/runner/registries.js +129 -61
- package/dist/services/runner/registries.js.map +1 -1
- package/oclif.manifest.json +628 -628
- package/package.json +3 -3
- package/bin/run +0 -8
- package/bin/run.cmd +0 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "checkly",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.1.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Checkly CLI",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -92,7 +92,7 @@
|
|
|
92
92
|
"helpClass": "./dist/help/help-extension.js"
|
|
93
93
|
},
|
|
94
94
|
"bin": {
|
|
95
|
-
"checkly": "./bin/run"
|
|
95
|
+
"checkly": "./bin/run.cjs"
|
|
96
96
|
},
|
|
97
97
|
"homepage": "https://github.com/checkly/checkly-cli#readme",
|
|
98
98
|
"dependencies": {
|
|
@@ -157,7 +157,7 @@
|
|
|
157
157
|
"clean:dist": "rimraf ./dist ./tsconfig.tsbuildinfo",
|
|
158
158
|
"clean:gen": "rimraf ./gen",
|
|
159
159
|
"clean": "pnpm run clean:dist && pnpm run clean:gen",
|
|
160
|
-
"prepare:ai-context": "cross-env CHECKLY_SKIP_AUTH=1
|
|
160
|
+
"prepare:ai-context": "cross-env CHECKLY_SKIP_AUTH=1 CHECKLY_E2E_CLI_VERSION=99.0.0 ./bin/run.cjs import plan --root gen --debug-import-plan-input-file ./src/ai-context/context.fixtures.json && jiti ./scripts/prepare-ai-context.ts",
|
|
161
161
|
"prepare:dist": "tsc --build",
|
|
162
162
|
"test": "pnpm pack && pnpm run test:types && vitest --run",
|
|
163
163
|
"test:types": "tsc -p tsconfig.type-tests.json --noEmit",
|
package/bin/run
DELETED
package/bin/run.cmd
DELETED