@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-runOptions
e2eTestRunner
string
Default: 
cypressAccepted values: 
protractor, cypress, noneTest runner to use for end to end (e2e) tests.
linter
string
Default: 
eslintAccepted values: 
eslint, noneThe tool to use for running lint checks.
skipInstall
boolean
Default: 
falseSkip installing after adding @nrwl/workspace.
skipFormat
boolean
Default: 
falseSkip formatting files.
style
string
Default: 
cssAccepted values: 
css, scss, sass, lessThe file extension to be used for style files.
skipPackageJson
boolean
Default: 
falseDo not add dependencies to package.json.
skipPostInstall
boolean
Default: 
falseDo not add or append ngcc to the postinstall script in package.json.
unitTestRunner
string
Default: 
jestAccepted values: 
karma, jest, noneTest runner to use for unit tests.