@probelabs/visor 0.1.72 → 0.1.73
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/dist/check-execution-engine.d.ts +92 -3
- package/dist/check-execution-engine.d.ts.map +1 -1
- package/dist/cli-main.d.ts.map +1 -1
- package/dist/index.js +521 -68
- package/dist/output-formatters.d.ts +2 -0
- package/dist/output-formatters.d.ts.map +1 -1
- package/dist/sdk/{check-execution-engine-RXV4MUD2.mjs → check-execution-engine-75SSXUBP.mjs} +2 -2
- package/dist/sdk/{chunk-J355UUEI.mjs → chunk-NINHE4RF.mjs} +295 -28
- package/dist/sdk/chunk-NINHE4RF.mjs.map +1 -0
- package/dist/sdk/sdk.d.mts +99 -60
- package/dist/sdk/sdk.d.ts +99 -60
- package/dist/sdk/sdk.js +293 -26
- package/dist/sdk/sdk.js.map +1 -1
- package/dist/sdk/sdk.mjs +1 -1
- package/package.json +3 -3
- package/dist/sdk/chunk-J355UUEI.mjs.map +0 -1
- /package/dist/sdk/{check-execution-engine-RXV4MUD2.mjs.map → check-execution-engine-75SSXUBP.mjs.map} +0 -0
package/dist/sdk/sdk.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@probelabs/visor",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.73",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"bin": {
|
|
6
6
|
"visor": "./dist/index.js"
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
"registry": "https://registry.npmjs.org/"
|
|
32
32
|
},
|
|
33
33
|
"scripts": {
|
|
34
|
-
"build:cli": "ncc build src/index.ts -o dist && cp -r defaults dist/ && node scripts/inject-version.js && echo '#!/usr/bin/env node' | cat - dist/index.js > temp && mv temp dist/index.js && chmod +x dist/index.js",
|
|
34
|
+
"build:cli": "ncc build src/index.ts -o dist && cp -r defaults dist/ && cp node_modules/tiktoken/tiktoken_bg.wasm dist/ && node scripts/inject-version.js && echo '#!/usr/bin/env node' | cat - dist/index.js > temp && mv temp dist/index.js && chmod +x dist/index.js",
|
|
35
35
|
"build:sdk": "tsup src/sdk.ts --dts --sourcemap --format esm,cjs --out-dir dist/sdk",
|
|
36
36
|
"build": "npm run build:cli && npm run build:sdk",
|
|
37
37
|
"test": "jest",
|
|
@@ -89,7 +89,7 @@
|
|
|
89
89
|
"@octokit/auth-app": "^8.1.0",
|
|
90
90
|
"@octokit/core": "^7.0.3",
|
|
91
91
|
"@octokit/rest": "^22.0.0",
|
|
92
|
-
"@probelabs/probe": "0.6.0-
|
|
92
|
+
"@probelabs/probe": "^0.6.0-rc117",
|
|
93
93
|
"@types/commander": "^2.12.0",
|
|
94
94
|
"@types/uuid": "^10.0.0",
|
|
95
95
|
"cli-table3": "^0.6.5",
|