@nx/express 19.6.0 → 19.7.0-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md
CHANGED
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
|
|
23
23
|
# Nx: Smart Monorepos · Fast CI
|
|
24
24
|
|
|
25
|
-
Nx is a build system
|
|
25
|
+
Nx is a build system, optimized for monorepos, with plugins for popular frameworks and tools and advanced CI capabilities including caching and distribution.
|
|
26
26
|
|
|
27
27
|
This package is an [Express plugin for Nx](https://nx.dev/express/overview).
|
|
28
28
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/express",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.7.0-beta.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "The Nx Plugin for Express contains executors and generators for allowing your workspace to create powerful Express Node applications and APIs.",
|
|
6
6
|
"repository": {
|
|
@@ -31,10 +31,10 @@
|
|
|
31
31
|
"migrations": "./migrations.json"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@nx/devkit": "19.
|
|
35
|
-
"@nx/node": "19.
|
|
34
|
+
"@nx/devkit": "19.7.0-beta.0",
|
|
35
|
+
"@nx/node": "19.7.0-beta.0",
|
|
36
36
|
"tslib": "^2.3.0",
|
|
37
|
-
"@nrwl/express": "19.
|
|
37
|
+
"@nrwl/express": "19.7.0-beta.0"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"express": "^4.18.1"
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import type { ProjectNameAndRootFormat } from '@nx/devkit/src/generators/project-name-and-root-utils';
|
|
2
|
-
import type { Linter } from '@nx/eslint';
|
|
2
|
+
import type { Linter, LinterType } from '@nx/eslint';
|
|
3
3
|
import type { UnitTestRunner } from '../../utils/test-runners';
|
|
4
4
|
|
|
5
5
|
export interface Schema {
|
|
@@ -10,7 +10,7 @@ export interface Schema {
|
|
|
10
10
|
projectNameAndRootFormat?: ProjectNameAndRootFormat;
|
|
11
11
|
unitTestRunner: UnitTestRunner;
|
|
12
12
|
tags?: string;
|
|
13
|
-
linter: Linter;
|
|
13
|
+
linter: Linter | LinterType;
|
|
14
14
|
frontendProject?: string;
|
|
15
15
|
swcJest?: boolean;
|
|
16
16
|
/** @deprecated use `swcJest` instead */
|