chore: pnpm up -r latest
Some checks failed
Deploy to GitHub Pages / build_site (push) Failing after 4m6s

This commit is contained in:
Max Richter
2025-11-23 16:01:59 +01:00
parent 566b287550
commit 7818148b12
5 changed files with 32 additions and 14 deletions

View File

@@ -1,6 +1,17 @@
export type { NodeInput } from "./inputs";
export type { NodeRegistry, RuntimeExecutor, SyncCache, AsyncCache } from "./components";
export type { Node, NodeDefinition, Socket, NodeId, Edge, Graph } from "./types";
export { NodeSchema, GraphSchema } from "./types";
export type {
NodeRegistry,
RuntimeExecutor,
SyncCache,
AsyncCache,
} from "./components";
export type {
Node,
NodeDefinition,
Socket,
NodeType as NodeId,
Edge,
Graph,
} from "./types";
export { NodeSchema, GraphSchema, NodeType } from "./types";
export { NodeDefinitionSchema } from "./types";

View File

@@ -52,13 +52,13 @@
"tslib": "^2.8.1",
"typescript": "^5.9.3",
"vite": "^7.2.4",
"vitest": "^4.0.13"
"vitest": "^4.0.13",
"@nodes/types": "link:../types"
},
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"dependencies": {
"@nodes/types": "link:../types",
"@threlte/core": "^8.3.0",
"@threlte/extras": "^9.7.0"
}