@nx/angular:pipe

Creates a new, generic pipe definition in the given project.

Usage

1nx generate pipe ... 2
1nx g p ... #same 2

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

You can specify the collection explicitly as follows:

1nx g @nx/angular:pipe ... 2
Nx 15 and lower use @nrwl/ instead of @nx/

Show what will be generated without writing to disk:

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

Options

name

Required
string

The name of the pipe.

project

Required
string

The name of the project.

export

boolean
Default: false

The declaring NgModule exports this pipe.

flat

boolean
Default: true

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

module

m
string

The filename of the declaring NgModule.

path

string
Format: path

The path at which to create the pipe, relative to the workspace root.

skipTests

boolean
Default: false

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

skipImport

boolean
Default: false

Do not import this pipe into the owning NgModule.

standalone

boolean
Default: false

Whether the generated pipe is standalone. Note: This is only supported in Angular versions >= 14.1.0.

skipFormat

boolean
Default: false

Skip formatting of files.