@nx/angular:scam
Creates a new Angular SCAM.
Monorepo World: October 7, 2024Monorepo World: October 7, 2024Join us!
Creates a new Angular SCAM.
1nx generate scam ...
2
By default, Nx will search for scam
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
1nx g @nx/angular:scam ...
2
Show what will be generated without writing to disk:
1nx g scam ... --dry-run
2
Generate a MySampleComponent
component in the my-lib
library.:
1nx g @nx/angular:scam my-sample --directory=my-lib/src/lib/my-sample
2
The name of the component.
The directory at which to create the SCAM files. When --nameAndDirectoryFormat=as-provided
, it will be relative to the current working directory. Otherwise, it will be relative to the workspace root.
true
Specifies if the SCAM should be exported from the project's entry point (normally index.ts
). It only applies to libraries.
true
Create the NgModule
in the same file as the component.
Default
Default
, OnPush
The change detection strategy to use in the new component.
false
Specifies if the style will contain :host { display: block; }
.
false
Include styles inline in the component.ts
file. Only CSS styles can be included inline. By default, an external styles file is created and referenced in the component.ts
file.
false
Include template inline in the component.ts
file. By default, an external template file is created and referenced in the component.ts
file.
as-provided
, derived
Whether to generate the SCAM in the directory as provided, relative to the current working directory and ignoring the project (as-provided
) or generate it using the project and directory relative to the workspace root (derived
).
The prefix to apply to the generated component selector.
css
css
, scss
, sass
, less
, none
The file extension or preprocessor to use for style files, or 'none' to skip generating the style file.
false
Do not create spec.ts
test files for the new component.
html-selector
The HTML
selector to use for this component.
false
Specifies if the component should have a selector or not.
component
Adds a developer-defined type to the filename, in the format name.type.ts
.
Emulated
, None
, ShadowDom
The view encapsulation strategy to use in the new component.
false
Skip formatting files.
false
Create the new files at the top level of the current project.
Provide the directory
option instead and use the as-provided
format. It will be removed in Nx v20.
The name of the project.
Provide the directory
option instead and use the as-provided
format. The project will be determined from the directory provided. It will be removed in Nx v20.