@nx/next:library
Create a React Library for an Nx workspace.
Monorepo World: October 7, 2024Monorepo World: October 7, 2024Join us!
Create a React Library for an Nx workspace.
❯
nx g lib my-lib
1nx generate library ...
2
1nx g lib ... #same
2
By default, Nx will search for library
in the default collection provisioned in workspace.json.
You can specify the collection explicitly as follows:
1nx g @nx/next:library ...
2
Show what will be generated without writing to disk:
1nx g library ... --dry-run
2
(?:^@[a-zA-Z0-9-*~][a-zA-Z0-9-*._~]*\\/[a-zA-Z0-9-~][a-zA-Z0-9-._~]*|^[a-zA-Z][^:]*)$
Library name
A directory where the lib is placed.
The application project to add the library route to.
false
Generate a buildable library.
true
Generate a default component.
false
When true, the stylesheet is generated using global CSS instead of CSS modules (e.g. file is *.css
rather than *.module.css
).
The library name used to import it, like @myorg/my-awesome-lib
.
false
Generate JavaScript files rather than TypeScript files.
eslint
eslint
The tool to use for running lint checks.
as-provided
, derived
Whether to generate the project name and root directory as provided (as-provided
) or generate them composing their values and taking the configured layout into account (derived
).
false
Use pascal case component file name (e.g. App.tsx
).
Create a publishable library.
Generate library with routes.
css
The file extension to be used for style files.
false
Skip formatting files.
false
Do not update tsconfig.json for development experience.
true
Whether to enable tsconfig strict mode or not.
false
Whether or not to configure the ESLint parserOptions.project
option. We do not do this by default for lint performance reasons.
Add tags to the library (used for linting).
jest
, vitest
, none
Test runner to use for unit tests.
false
Do not add dependencies to package.json
.