@nrwl/angular:pipe
Creates a new, generic pipe definition in the given project.
Creates a new, generic pipe definition in the given project.
nx generate pipe ...
nx g p ... #same
By default, Nx will search for pipe
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nrwl/angular:pipe ...
Show what will be generated without writing to disk:
nx g pipe ... --dry-run
The name of the pipe.
The name of the project.
false
The declaring NgModule exports this pipe.
true
When true (the default) creates files at the top level of the project.
The filename of the declaring NgModule.
path
The path at which to create the pipe, relative to the workspace root.
false
Do not create "spec.ts" test files for the new pipe.
false
Do not import this pipe into the owning NgModule.
false
Whether the generated pipe is standalone. Note: This is only supported in Angular versions >= 14.1.0.
false
Skip formatting of files.