page
Create a page
Usage
nx generate page ...
By default, Nx will search for page
in the default collection provisioned in workspace.json
.
You can specify the collection explicitly as follows:
nx g @nrwl/gatsby:page ...
Show what will be generated without writing to disk:
nx g page ... --dry-run
Examples
Generate a page in the mylib library:
nx g page my-page --project=mylib
Generate a class component in the mylib library:
nx g page my-page --project=mylib --classComponent
Options
directory
Alias(es): d
Type: string
Create the component under this directory (can be nested).
export
Alias(es): e
Default: false
Type: boolean
When true, the component is exported from the project index.ts (if it exists).
flat
Default: false
Type: boolean
Create component at the source root rather than its own directory.
js
Default: false
Type: boolean
Generate JavaScript files rather than TypeScript files.
name
Type: string
The name of the component.
project
Alias(es): p
Type: string
The name of the project.
skipTests
Default: false
Type: boolean
When true, does not create "spec.ts" test files for the new component.
style
Alias(es): s
Default: css
Type: string
Possible values: css
, scss
, styl
, less
, styled-components
, @emotion/styled
, none
The file extension to be used for style files.