UNPKG

@nx/next

Version:

The Next.js plugin for Nx contains executors and generators for managing Next.js applications and libraries within an Nx workspace. It provides: - Scaffolding for creating, building, serving, linting, and testing Next.js applications. - Integration wit

68 lines (67 loc) 1.76 kB
import { GeneratorCallback, Tree } from '@nx/devkit'; export declare const nextSpecificStyleDependenciesBabel: { 'styled-components': { dependencies: import("@nx/react/src/utils/dependencies").DependencyEntries; devDependencies: { 'babel-plugin-styled-components': string; }; }; '@emotion/styled': { dependencies: { '@emotion/server': string; }; devDependencies: import("@nx/react/src/utils/dependencies").DependencyEntries; }; css: { dependencies: {}; devDependencies: {}; }; scss: { dependencies: {}; devDependencies: { sass: string; }; }; less: { dependencies: {}; devDependencies: { less: string; 'less-loader': string; }; }; }; export declare const nextSpecificStyleDependenciesSwc: { 'styled-components': { dependencies: import("@nx/react/src/utils/dependencies").DependencyEntries; devDependencies: { 'babel-plugin-styled-components': string; }; }; '@emotion/styled': { dependencies: { '@emotion/server': string; }; devDependencies: import("@nx/react/src/utils/dependencies").DependencyEntries; }; css: { dependencies: {}; devDependencies: {}; }; scss: { dependencies: {}; devDependencies: { sass: string; }; }; less: { dependencies: {}; devDependencies: { less: string; 'less-loader': string; }; }; }; export declare function addStyleDependencies(host: Tree, options: { style?: string; swc?: boolean; }): GeneratorCallback;