@nx/nuxt 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 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 [Nuxt plugin for Nx](https://nx.dev/nx-api/nuxt).
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/nuxt",
3
- "version": "19.6.0",
3
+ "version": "19.7.0-beta.0",
4
4
  "private": false,
5
5
  "description": "The Nuxt plugin for Nx contains executors and generators for managing Nuxt applications and libraries within an Nx workspace. It provides:\n\n\n- Integration with libraries such as Vitest, Playwright, Cypress, and Storybook.\n\n- Generators for applications, libraries, and more.\n\n- Library build support for publishing packages to npm or other registries.\n\n- Utilities for automatic workspace refactoring.",
6
6
  "repository": {
@@ -31,11 +31,11 @@
31
31
  "dependencies": {
32
32
  "tslib": "^2.3.0",
33
33
  "@nuxt/kit": "^3.10.0",
34
- "@nx/devkit": "19.6.0",
35
- "@nx/js": "19.6.0",
36
- "@nx/eslint": "19.6.0",
37
- "@nx/vue": "19.6.0",
38
- "@nx/vite": "19.6.0",
34
+ "@nx/devkit": "19.7.0-beta.0",
35
+ "@nx/js": "19.7.0-beta.0",
36
+ "@nx/eslint": "19.7.0-beta.0",
37
+ "@nx/vue": "19.7.0-beta.0",
38
+ "@nx/vite": "19.7.0-beta.0",
39
39
  "@phenomnomnominal/tsquery": "~5.0.1"
40
40
  },
41
41
  "peerDependencies": {},
@@ -1,11 +1,11 @@
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 Schema {
5
5
  name: string;
6
6
  directory?: string;
7
7
  projectNameAndRootFormat?: ProjectNameAndRootFormat;
8
- linter?: Linter;
8
+ linter?: Linter | LinterType;
9
9
  skipFormat?: boolean;
10
10
  unitTestRunner?: 'vitest' | 'none';
11
11
  e2eTestRunner?: 'cypress' | 'playwright' | 'none';
@@ -1,4 +1,4 @@
1
- import { Linter } from '@nx/eslint';
1
+ import { Linter, LinterType } from '@nx/eslint';
2
2
 
3
3
  export interface Schema {
4
4
  project: string;
@@ -6,7 +6,7 @@ export interface Schema {
6
6
  generateStories?: boolean;
7
7
  js?: boolean;
8
8
  tsConfiguration?: boolean;
9
- linter?: Linter;
9
+ linter?: Linter | LinterType;
10
10
  ignorePaths?: string[];
11
11
  configureStaticServe?: boolean;
12
12
  }
@@ -1,8 +1,8 @@
1
1
  import { Tree } from 'nx/src/generators/tree';
2
- import { Linter } from '@nx/eslint';
2
+ import { Linter, LinterType } from '@nx/eslint';
3
3
  import { GeneratorCallback } from '@nx/devkit';
4
4
  export declare function addLinting(host: Tree, options: {
5
- linter: Linter;
5
+ linter: Linter | LinterType;
6
6
  projectName: string;
7
7
  projectRoot: string;
8
8
  unitTestRunner?: 'vitest' | 'none';