12 lines
248 B
TypeScript
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;
|