@nrwl/angular:upgrade-module

Sets up an Upgrade Module.

Usage

nx generate upgrade-module ...

By default, Nx will search for upgrade-module in the default collection provisioned in workspace.json.

You can specify the collection explicitly as follows:

nx g @nrwl/angular:upgrade-module ...

Show what will be generated without writing to disk:

nx g upgrade-module ... --dry-run

Options

angularJsImport

string

Import expression of the AngularJS application (e.g., --angularJsImport=some_node_module/my_app).

angularJsCmpSelector

string

The selector of an AngularJS component (e.g., --angularJsCmpSelector=myComponent).

name

Required
string

The name of the main AngularJS module.

project

Required
string

The name of the project.

router

boolean
Default: false

Sets up router synchronization (e.g., --router).

skipFormat

boolean
Default: false

Skip formatting files.

skipPackageJson

boolean
Default: false

Do not add @angular/upgrade to package.json (e.g., --skipPackageJson).