@nrwl/angular:init

Initializes the @nrwl/angular plugin. NOTE: Does not work in the --dry-run mode.

Usage

nx generate init ...

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

You can specify the collection explicitly as follows:

nx g @nrwl/angular:init ...

Show what will be generated without writing to disk:

nx g init ... --dry-run

Options

e2eTestRunner

string
Default: cypress
Accepted values: protractor, cypress, none

Test runner to use for end to end (e2e) tests.

linter

string
Default: eslint
Accepted values: eslint, none

The tool to use for running lint checks.

skipInstall

boolean
Default: false

Skip installing after adding @nrwl/workspace.

skipFormat

boolean
Default: false

Skip formatting files.

style

string
Default: css
Accepted values: css, scss, sass, less

The file extension to be used for style files.

skipPackageJson

boolean
Default: false

Do not add dependencies to package.json.

skipPostInstall

boolean
Default: false

Do not add or append ngcc to the postinstall script in package.json.

unitTestRunner

string
Default: jest
Accepted values: karma, jest, none

Test runner to use for unit tests.