Jason Jean a7b7af2dfe
feat(core): switch over to angular 10 (#3056)
* feat(core): switch over to devkit 10-rc.0

* feat(core): implement solution tsconfigs wip

* feat(angular): add angular migrations

* fix(angular): modify angularjs tests
2020-07-07 17:02:06 -04:00

1.3 KiB

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 workspace.json.

You can specify the collection explicitly as follows:

nx g @nrwl/node: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

directory

Alias(es): d

Type: string

A directory where the lib is placed

linter

Default: tslint

Type: string

Possible values: eslint, tslint

The tool to use for running lint checks.

name

Type: string

Library name

publishable

Alias(es): buildable

Type: boolean

Create a publishable library.

skipFormat

Default: false

Type: boolean

Skip formatting files

skipTsConfig

Default: false

Type: boolean

Do not update tsconfig.base.json for development experience.

tags

Alias(es): t

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