@nx/nest 19.6.1 → 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 with built-in tooling and advanced CI capabilities. It helps you maintain and scale monorepos, both locally and on CI.
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 a [NestJS plugin for Nx](https://nx.dev/nest/overview).
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/nest",
3
- "version": "19.6.1",
3
+ "version": "19.7.0-beta.0",
4
4
  "private": false,
5
5
  "description": "The Nx Plugin for Nest contains executors and generators for allowing your workspace to create powerful Nest best in class APIs.",
6
6
  "repository": {
@@ -32,13 +32,13 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "@nestjs/schematics": "^9.1.0",
35
- "@nx/devkit": "19.6.1",
36
- "@nx/js": "19.6.1",
37
- "@nx/eslint": "19.6.1",
38
- "@nx/node": "19.6.1",
35
+ "@nx/devkit": "19.7.0-beta.0",
36
+ "@nx/js": "19.7.0-beta.0",
37
+ "@nx/eslint": "19.7.0-beta.0",
38
+ "@nx/node": "19.7.0-beta.0",
39
39
  "@phenomnomnominal/tsquery": "~5.0.1",
40
40
  "tslib": "^2.3.0",
41
- "@nrwl/nest": "19.6.1"
41
+ "@nrwl/nest": "19.7.0-beta.0"
42
42
  },
43
43
  "publishConfig": {
44
44
  "access": "public"
@@ -1,12 +1,12 @@
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
 
4
4
  export interface ApplicationGeneratorOptions {
5
5
  name: string;
6
6
  directory?: string;
7
7
  projectNameAndRootFormat?: ProjectNameAndRootFormat;
8
8
  frontendProject?: string;
9
- linter?: Linter;
9
+ linter?: Linter | LinterType;
10
10
  skipFormat?: boolean;
11
11
  skipPackageJson?: boolean;
12
12
  standaloneConfig?: boolean;
@@ -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';
4
4
 
5
5
  export interface LibraryGeneratorOptions {
@@ -10,7 +10,7 @@ export interface LibraryGeneratorOptions {
10
10
  projectNameAndRootFormat?: ProjectNameAndRootFormat;
11
11
  global?: boolean;
12
12
  importPath?: string;
13
- linter?: Linter;
13
+ linter?: Linter | LinterType;
14
14
  publishable?: boolean;
15
15
  service?: boolean;
16
16
  skipFormat?: boolean;