@nx/plugin:create-package
Create a framework package that uses Nx CLI.
Create a framework package that uses Nx CLI.
nx generate create-package ...
By default, Nx will search for create-package
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
nx g @nx/plugin:create-package ...
Show what will be generated without writing to disk:
nx g create-package ... --dry-run
create-.+|^@.+/create(?:-.+)?
The package name of cli, e.g. create-framework-package
. Note this must be a valid NPM name to be published.
The name of the generator project.
tsc
tsc
, swc
The compiler used by the build and test targets.
A directory where the app is placed.
jest
jest
, none
Test runner to use for end to end (E2E) tests.
eslint
eslint
The tool to use for running lint checks.
Add tags to the library (used for linting).
jest
jest
, none
Test runner to use for unit tests.
false
Skip formatting files.