Skip to content

@nxext/preact:application

preact application schematic

Usage

bash
nx generate application ...
bash
nx g app ... # same

By default, Nx will search for application in the default collection provisioned in nx.json.

You can specify the collection explicitly as follows:

bash
nx g @nxext/preact:application ...

Show what will be generated without writing to disk:

bash
nx g application ... --dry-run

Options

name (required)

Type: string

directory

Alias(es): d

Type: string

A directory where the lib is placed.

e2eTestRunner

Default: cypress

Type: string

Possible values: cypress, none

Test runner to use for end to end (e2e) tests.

host

Default: localhost

Type: string

Host to listen on.

linter

Default: eslint

Type: string

Possible values: eslint

The tool to use for running lint checks.

port

Default: 5000

Type: number

Port to listen on.

skipFormat

Default: false

Type: boolean

Skip formatting files.

tags

Alias(es): t

Type: string

Add tags to the project (used for linting)

unitTestRunner

Default: vitest

Type: string

Possible values: vitest, jest, none

Test runner to use for unit tests.

@nxext/preact:library

preact library schematic

Usage

bash
nx generate library ...
bash
nx g lib ... # same

By default, Nx will search for library in the default collection provisioned in nx.json.

You can specify the collection explicitly as follows:

bash
nx g @nxext/preact:library ...

Show what will be generated without writing to disk:

bash
nx g library ... --dry-run

Options

name (required)

Type: string

buildable

Default: false

Type: boolean

Generate a buildable library.

directory

Alias(es): d

Type: string

A directory where the lib is placed.

e2eTestRunner

Default: cypress

Type: string

Possible values: cypress, none

Test runner to use for end to end (e2e) tests.

importPath

Type: string

The library name used to import it, like @myorg/my-awesome-lib

linter

Default: eslint

Type: string

Possible values: eslint

The tool to use for running lint checks.

publishable

Type: boolean

Create a publishable library.

skipFormat

Default: false

Type: boolean

Skip formatting files.

tags

Alias(es): t

Type: string

Add tags to the project (used for linting)

unitTestRunner

Default: jest

Type: string

Possible values: vitest, jest, none

Test runner to use for unit tests.

@nxext/preact:component

Add component

Usage

bash
nx generate component ...
bash
nx g c ... # same

By default, Nx will search for component in the default collection provisioned in nx.json.

You can specify the collection explicitly as follows:

bash
nx g @nxext/preact:component ...

Show what will be generated without writing to disk:

bash
nx g component ... --dry-run

Options

name (required)

Type: string

project (required)

Alias(es): p

Type: string

Project where the component is generated

unitTestRunner

Default: jest

Type: string

Possible values: jest, none

Test runner to use for unit tests.

MIT Licensed | Copyright © 2020-present Nxext Developers & Contributors