@nx/playwright 19.7.0-canary.20240817-b91d788 → 19.7.0-canary.20240821-2065033

Sign up to get free protection for your applications and to get access to all the features.
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
  ## Getting Started
28
28
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/playwright",
3
- "version": "19.7.0-canary.20240817-b91d788",
3
+ "version": "19.7.0-canary.20240821-2065033",
4
4
  "type": "commonjs",
5
5
  "homepage": "https://nx.dev",
6
6
  "private": false,
@@ -35,11 +35,11 @@
35
35
  },
36
36
  "dependencies": {
37
37
  "@phenomnomnominal/tsquery": "~5.0.1",
38
- "@nx/devkit": "19.7.0-canary.20240817-b91d788",
39
- "@nx/eslint": "19.7.0-canary.20240817-b91d788",
40
- "@nx/webpack": "19.7.0-canary.20240817-b91d788",
41
- "@nx/vite": "19.7.0-canary.20240817-b91d788",
42
- "@nx/js": "19.7.0-canary.20240817-b91d788",
38
+ "@nx/devkit": "19.7.0-canary.20240821-2065033",
39
+ "@nx/eslint": "19.7.0-canary.20240821-2065033",
40
+ "@nx/webpack": "19.7.0-canary.20240821-2065033",
41
+ "@nx/vite": "19.7.0-canary.20240821-2065033",
42
+ "@nx/js": "19.7.0-canary.20240821-2065033",
43
43
  "tslib": "^2.3.0",
44
44
  "minimatch": "9.0.3"
45
45
  },
@@ -1,4 +1,4 @@
1
- import type { Linter } from '@nx/eslint';
1
+ import type { Linter, LinterType } from '@nx/eslint';
2
2
 
3
3
  export interface ConfigurationGeneratorSchema {
4
4
  project: string;
@@ -10,7 +10,7 @@ export interface ConfigurationGeneratorSchema {
10
10
  skipFormat: boolean;
11
11
  skipPackageJson: boolean;
12
12
  skipInstall?: boolean;
13
- linter: Linter;
13
+ linter: Linter | LinterType;
14
14
  setParserOptionsProject: boolean; // default is false
15
15
  /**
16
16
  * command to give playwright to run the web server
@@ -1,8 +1,8 @@
1
1
  import { GeneratorCallback, Tree } from '@nx/devkit';
2
- import { Linter } from '@nx/eslint';
2
+ import { Linter, LinterType } from '@nx/eslint';
3
3
  export interface PlaywrightLinterOptions {
4
4
  project: string;
5
- linter: Linter;
5
+ linter: Linter | LinterType;
6
6
  setParserOptionsProject: boolean;
7
7
  skipPackageJson: boolean;
8
8
  rootProject: boolean;