* chore(angular): support angular 13 Support Angular 13 chore(angular): support ng 13 next 11 chore(angular): upgrade tslib dep chore(angular): update package and ng-packagr-lite executors to align with ng-packagr v13 chore(angular): update test snapshots with ts version fix(angular): buildable lib tsconfig transform test * chore(angular): sync ng-packagr changes to the package and ng-packagr-lite executors * chore(angular): add migrations * chore(angular): rxjs7 * feat(angular): check rxjs version to install * feat(angular): update jest resolver to resolve esm * chore(angular): fix version * chore(angular): support jest-preset-angular * fix(angular): tests * fix(angular): fix e2e tests and add .angular to gitignore * fix(angular): fix jest transformers ignore pattern * fix(angular): fix node test * fix(angular): fix workspace test * fix(angular): import marble utils from jasmine-marbles instead of @nrwl/angular/testing * feat(angular): update ngrx to 13.0.0-beta.;0 * fix(angular): temporarily skip test with pnpm * fix(angular): bump jest-preset-angular to fix jest performance issues * fix(angular): webpack-browser and server schema changes Co-authored-by: Leosvel Pérez Espinosa <leosvel.perez.espinosa@gmail.com> Co-authored-by: Jason Jean <jasonjean1993@gmail.com>
2.3 KiB
@nrwl/workspace:library
Create a library
Usage
nx generate library ...
nx g lib ... # same
By default, Nx will search for library in the default collection provisioned in angular.json.
You can specify the collection explicitly as follows:
nx g @nrwl/workspace:library ...
Show what will be generated without writing to disk:
nx g library ... --dry-run
Examples
Generate libs/myapp/mylib:
nx g lib mylib --directory=myapp
Options
name (required)
Type: string
Library name
babelJest
Default: false
Type: boolean
Use babel instead ts-jest
buildable
Default: false
Type: boolean
Generate a buildable library.
directory
Type: string
A directory where the lib is placed
importPath
Type: string
The library name used to import it, like @myorg/my-awesome-lib
js
Default: false
Type: boolean
Generate JavaScript files rather than TypeScript files
linter
Default: eslint
Type: string
Possible values: eslint
The tool to use for running lint checks.
pascalCaseFiles
Alias(es): P
Default: false
Type: boolean
Use pascal case file names.
setParserOptionsProject
Default: false
Type: boolean
Whether or not to configure the ESLint "parserOptions.project" option. We do not do this by default for lint performance reasons.
skipBabelrc
Default: false
Type: boolean
Do not generate .babelrc file. Useful for Node libraries that are not compiled by Babel
skipFormat
Default: false
Type: boolean
Skip formatting files
skipTsConfig
Default: false
Type: boolean
Do not update tsconfig.json for development experience.
standaloneConfig
Type: boolean
Split the project configuration into /project.json rather than including it inside workspace.json
strict
Default: true
Type: boolean
Whether to enable tsconfig strict mode or not.
tags
Type: string
Add tags to the library (used for linting)
testEnvironment
Default: jsdom
Type: string
Possible values: jsdom, node
The test environment to use if unitTestRunner is set to jest
unitTestRunner
Default: jest
Type: string
Possible values: jest, none
Test runner to use for unit tests