UNPKG

@nx/gradle

Version:

The Nx Plugin for Gradle allows Gradle tasks to be run through Nx

10 lines (9 loc) 499 B
import { GeneratorCallback, Tree } from '@nx/devkit'; import { InitGeneratorSchema } from './schema'; export declare function initGenerator(tree: Tree, options: InitGeneratorSchema): Promise<GeneratorCallback>; /** * This function creates and populate build.gradle file next to the settings.gradle file. */ export declare function addBuildGradleFileNextToSettingsGradle(tree: Tree): Promise<void>; export declare function updateNxJsonConfiguration(tree: Tree): void; export default initGenerator;