dcfb00128d
Implements the workflow thread CLI command that retrieves workflow execution context (logs, events, state) for a given run. - Add 'nerve workflow thread <runId>' subcommand - Add log-store query API in daemon - Add tests for CLI and log-store - Export new daemon types for thread data 小橘 <xiaoju@shazhou.work>
22 lines
368 B
TypeScript
22 lines
368 B
TypeScript
import { defineConfig } from "@rslib/core";
|
|
|
|
export default defineConfig({
|
|
lib: [
|
|
{
|
|
format: "esm",
|
|
dts: true,
|
|
},
|
|
],
|
|
source: {
|
|
entry: {
|
|
index: "src/index.ts",
|
|
"sense-worker": "src/sense-worker.ts",
|
|
"workflow-worker": "src/workflow-worker.ts",
|
|
},
|
|
},
|
|
output: {
|
|
target: "node",
|
|
cleanDistPath: true,
|
|
},
|
|
});
|