0.12.0 • Published 7 months ago

@tokens-studio/graph-engine-migration v0.12.0

Weekly downloads
-
License
MIT
Repository
-
Last release
7 months ago

Graph Engine migration

NPM version badge License badge

This project exposes controls for updating old graphs to the latest version that the graph-engine supports.

Use as follows

import type { FlowGraph } from "@tokens-studio/graph-engine";
import { updateGraph } from "@tokens-studio/graph-engine-migration";

const myGraph: FlowGraph = {
  /**... */
};

const updatedGraph = await updateGraph(myGraph);