@jacobbd/relay-ai 0.7.4 → 0.7.5
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/{chunk-EUY2MVOS.js → chunk-HEMJFOXG.js} +95 -4
- package/dist/chunk-HEMJFOXG.js.map +1 -0
- package/dist/cli.js +81 -31
- package/dist/cli.js.map +1 -1
- package/dist/core/index.js +5 -3
- package/dist/core/index.js.map +1 -1
- package/dist/{ui-command-CF3IEIZP.js → ui-command-26QQUWTQ.js} +2 -2
- package/package.json +5 -3
- package/dist/chunk-EUY2MVOS.js.map +0 -1
- /package/dist/{ui-command-CF3IEIZP.js.map → ui-command-26QQUWTQ.js.map} +0 -0
package/dist/core/index.js
CHANGED
|
@@ -119,7 +119,7 @@ import { join as join3 } from "path";
|
|
|
119
119
|
// package.json
|
|
120
120
|
var package_default = {
|
|
121
121
|
name: "@jacobbd/relay-ai",
|
|
122
|
-
version: "0.7.
|
|
122
|
+
version: "0.7.5",
|
|
123
123
|
publishConfig: {
|
|
124
124
|
access: "public"
|
|
125
125
|
},
|
|
@@ -156,11 +156,13 @@ var package_default = {
|
|
|
156
156
|
scripts: {
|
|
157
157
|
build: "tsup && tsup --config tsup.core.config.ts && node scripts/copy-ui-assets.mjs",
|
|
158
158
|
dev: "tsup --watch",
|
|
159
|
-
test:
|
|
159
|
+
test: 'vitest run --exclude "tests/debug-*.test.ts"',
|
|
160
|
+
"test:live": "vitest run tests/debug-xai.test.ts tests/debug-openai-oauth.test.ts",
|
|
160
161
|
"test:watch": "vitest",
|
|
161
162
|
typecheck: "tsc --noEmit",
|
|
163
|
+
"release:check": "node scripts/release-metadata.mjs",
|
|
162
164
|
"refresh:models-dev": "node scripts/refresh-models-dev-cache.mjs",
|
|
163
|
-
prepublishOnly:
|
|
165
|
+
prepublishOnly: "npm run release:check && npm run build"
|
|
164
166
|
},
|
|
165
167
|
dependencies: {
|
|
166
168
|
"@ai-sdk/alibaba": "^1.0.26",
|