@nx-plugins/vite
Version:
The Nx Plugin for Vite that contains executors, generators, and utilities for managing Vite applications and libraries within an Nx workspace.
6 lines (5 loc) • 356 B
TypeScript
import { GeneratorCallback, Tree } from '@nrwl/devkit';
import { ViteGeneratorSchema } from './schema';
declare function viteInitGenerator(tree: Tree, schema: ViteGeneratorSchema): GeneratorCallback;
export default viteInitGenerator;
export declare const viteInit: (generatorOptions: ViteGeneratorSchema) => (tree: any, context: any) => Promise<any>;