@alpic80/rivet-cli 1.24.2-aidon.3 → 1.24.2-aidon.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/bin/commands/serve.js +2 -2
- package/package.json +5 -5
package/bin/commands/serve.js
CHANGED
|
@@ -176,7 +176,7 @@ export async function serve(cliArgs = {}) {
|
|
|
176
176
|
if (args.allowSpecifyingGraphId || args.projectsRootDir) {
|
|
177
177
|
app.post('/*', async (c) => {
|
|
178
178
|
const full = decodeURIComponent(c.req.path.slice(1)); // remove leading slash
|
|
179
|
-
const parts = full.split('
|
|
179
|
+
const parts = full.split(':');
|
|
180
180
|
let graphId;
|
|
181
181
|
let graphFile;
|
|
182
182
|
if (parts.length === 1) {
|
|
@@ -283,7 +283,7 @@ function createProcessGraph(ctx) {
|
|
|
283
283
|
`Input:${JSON.stringify(inputs)}`,
|
|
284
284
|
localCtx.stream && `Stream:${chalk.bold.white(localCtx.stream)}`,
|
|
285
285
|
localCtx.streamNode && `StreamNode:${chalk.bold.white(localCtx.streamNode)}`,
|
|
286
|
-
localCtx.events && `
|
|
286
|
+
localCtx.events && `Events:${chalk.bold.white(localCtx.events)}`,
|
|
287
287
|
localCtx.exposeCost && `ExposeCost:${chalk.bold.white(localCtx.exposeCost)}`,
|
|
288
288
|
localCtx.exposeUsage && `ExposeUsage:${chalk.bold.white(localCtx.exposeUsage)}`,
|
|
289
289
|
localCtx.logTrace && `LogTrace:${chalk.bold.white(localCtx.logTrace)}`
|
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@alpic80/rivet-cli",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"repository": "https://github.com/castortech/rivet",
|
|
5
|
-
"version": "1.24.2-aidon.
|
|
5
|
+
"version": "1.24.2-aidon.5",
|
|
6
6
|
"src": "bin/cli.ts",
|
|
7
7
|
"bin": {
|
|
8
8
|
"rivet": "bin/cli.js"
|
|
@@ -24,11 +24,11 @@
|
|
|
24
24
|
"dev:serve": "tsx src/cli.ts serve --projects-root-dir C:/temp/aidon/Rivet_Files"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@alpic80/rivet-core": "^1.24.2-aidon.
|
|
28
|
-
"@alpic80/rivet-node": "^1.24.2-aidon.
|
|
27
|
+
"@alpic80/rivet-core": "^1.24.2-aidon.5",
|
|
28
|
+
"@alpic80/rivet-node": "^1.24.2-aidon.5",
|
|
29
29
|
"@hono/node-server": "^1.13.8",
|
|
30
|
-
"@ironclad/rivet-core": "npm:@alpic80/rivet-core@1.24.2-aidon.
|
|
31
|
-
"@ironclad/rivet-node": "npm:@alpic80/rivet-node@1.24.2-aidon.
|
|
30
|
+
"@ironclad/rivet-core": "npm:@alpic80/rivet-core@1.24.2-aidon.5",
|
|
31
|
+
"@ironclad/rivet-node": "npm:@alpic80/rivet-node@1.24.2-aidon.5",
|
|
32
32
|
"@types/dotenv": "^8.2.3",
|
|
33
33
|
"chalk": "^5.4.1",
|
|
34
34
|
"didyoumean2": "^7.0.4",
|