@nx/angular:directive
Creates a new Angular directive.
Creates a new Angular directive.
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
The file path to the directive without the file extension and suffix (e.g. my-app/src/app/my-directive/my-directive
generates the file my-app/src/app/my-directive/my-directive.directive.ts
). Relative to the current working directory.
false
The declaring NgModule exports this directive.
The filename of the declaring NgModule.
The directive symbol name. It not provided, it defaults to the last segment of the provided path
.
A prefix to apply to generated selectors.
false
Do not create "spec.ts" test files for the new class.
false
Do not import this directive into the owning NgModule.
html-selector
The HTML selector to use for this directive.
true
Whether the generated directive is standalone.
false
Skip formatting of files.