@nx/angular:directive

Creates a new Angular directive.

Usage

1nx generate directive ... 2
1nx g d ... #same 2

By default, Nx will search for directive in the default collection provisioned in workspace.json.

You can specify the collection explicitly as follows:

1nx g @nx/angular:directive ... 2

Show what will be generated without writing to disk:

1nx g directive ... --dry-run 2

Options

name

Required
string

The name of the new directive.

directory

string

The directory at which to create the directive file. When --nameAndDirectoryFormat=as-provided, it will be relative to the current working directory. Otherwise, it will be relative to the workspace root.

export

boolean
Default: false

The declaring NgModule exports this directive.

module

m
string

The filename of the declaring NgModule.

nameAndDirectoryFormat

string
Accepted values: as-provided, derived

Whether to generate the directive in the directory as provided, relative to the current working directory and ignoring the project (as-provided) or generate it using the project and directory relative to the workspace root (derived).

prefix

p
oneOf [string, string]

A prefix to apply to generated selectors.

skipTests

boolean
Default: false

Do not create "spec.ts" test files for the new class.

skipImport

boolean
Default: false

Do not import this directive into the owning NgModule.

selector

string
Format: html-selector

The HTML selector to use for this directive.

standalone

boolean
Default: true

Whether the generated directive is standalone.

skipFormat

boolean
Default: false

Skip formatting of files.

flat

Deprecated
boolean
Default: true

When true (the default), creates the new files at the top level of the current project.

Provide the directory option instead and use the as-provided format. It will be removed in Nx v19.

project

Deprecated
string

The name of the project.

Provide the directory option instead and use the as-provided format. The project will be determined from the directory provided. It will be removed in Nx v19.