2025-05-06 17:29:25 +00:00

12 lines
248 B
TypeScript

import { NxPlugin } from '@nx/devkit';
import { createDependencies, createNodes, createNodesV2 } from './graph';
const nxPlugin: NxPlugin = {
name: '@unbox-x/nx-rust',
createDependencies,
createNodes,
createNodesV2,
};
export = nxPlugin;