skein-js 0.6.3 → 0.8.0

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.
Files changed (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +5 -5
package/dist/index.js CHANGED
@@ -370,7 +370,7 @@ import { mkdir, writeFile } from "fs/promises";
370
370
  import { createRequire, isBuiltin } from "module";
371
371
  import path4 from "path";
372
372
  import { loadConfig as loadConfig2, parseGraphSpec } from "@skein-js/config";
373
- import { embedRuntimePackage, isCustomFunctionPath } from "@skein-js/runtime";
373
+ import { providerEmbedPackage, isCustomFunctionPath } from "@skein-js/runtime";
374
374
 
375
375
  // src/bundle/precompute-schemas.ts
376
376
  async function precomputeSchemas(graphs) {
@@ -535,7 +535,7 @@ async function bundleProject(options) {
535
535
  for (const peer of SKEIN_RUNTIME_PEERS) {
536
536
  dependencies[peer] = resolveInstalledVersion(peer, workspaceRoot);
537
537
  }
538
- const embedPkg = config.store?.index?.embed && embedRuntimePackage(config.store.index.embed);
538
+ const embedPkg = config.store?.index?.embed && providerEmbedPackage(config.store.index.embed);
539
539
  if (embedPkg) dependencies[embedPkg] = resolveInstalledVersion(embedPkg, workspaceRoot);
540
540
  for (const dep of config.dependencies ?? []) {
541
541
  if (dep.startsWith(".") || dep.startsWith("/")) continue;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skein-js",
3
- "version": "0.6.3",
3
+ "version": "0.8.0",
4
4
  "description": "The skein-js CLI — a drop-in replacement for the LangGraph CLI (dev/up/build/dockerfile).",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Maina Wycliffe <wmmaina7@gmail.com>",
@@ -47,10 +47,10 @@
47
47
  "@commander-js/extra-typings": "~13.1.0",
48
48
  "@langchain/langgraph-checkpoint-postgres": "^1.0.4",
49
49
  "commander": "~13.1.0",
50
- "@skein-js/config": "0.6.3",
51
- "@skein-js/core": "0.6.3",
52
- "@skein-js/express": "0.6.3",
53
- "@skein-js/runtime": "0.6.3"
50
+ "@skein-js/core": "0.8.0",
51
+ "@skein-js/config": "0.8.0",
52
+ "@skein-js/express": "0.8.0",
53
+ "@skein-js/runtime": "0.8.0"
54
54
  },
55
55
  "optionalDependencies": {
56
56
  "vite": "^8.1.0"