@nx/playwright 22.6.0-beta.12 → 22.6.0-beta.14

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nx/playwright",
3
- "version": "22.6.0-beta.12",
3
+ "version": "22.6.0-beta.14",
4
4
  "type": "commonjs",
5
5
  "homepage": "https://nx.dev",
6
6
  "private": false,
@@ -34,14 +34,14 @@
34
34
  "directory": "packages/playwright"
35
35
  },
36
36
  "dependencies": {
37
- "@nx/devkit": "22.6.0-beta.12",
38
- "@nx/eslint": "22.6.0-beta.12",
39
- "@nx/js": "22.6.0-beta.12",
37
+ "@nx/devkit": "22.6.0-beta.14",
38
+ "@nx/eslint": "22.6.0-beta.14",
39
+ "@nx/js": "22.6.0-beta.14",
40
40
  "tslib": "^2.3.0",
41
41
  "minimatch": "10.2.4"
42
42
  },
43
43
  "devDependencies": {
44
- "nx": "22.6.0-beta.12"
44
+ "nx": "22.6.0-beta.14"
45
45
  },
46
46
  "peerDependencies": {
47
47
  "@playwright/test": "^1.36.0"
@@ -99,7 +99,7 @@ async function buildPlaywrightTargets(configFilePath, projectRoot, options, cont
99
99
  cache: true,
100
100
  inputs: [
101
101
  ...('production' in namedInputs
102
- ? ['default', '^production']
102
+ ? ['default', '^{projectRoot}/tsconfig*.json', '^production']
103
103
  : ['default', '^default']),
104
104
  { externalDependencies: ['@playwright/test'] },
105
105
  ],
@@ -116,7 +116,7 @@ async function buildPlaywrightTargets(configFilePath, projectRoot, options, cont
116
116
  cache: true,
117
117
  inputs: [
118
118
  ...('production' in namedInputs
119
- ? ['default', '^production']
119
+ ? ['default', '^{projectRoot}/tsconfig*.json', '^production']
120
120
  : ['default', '^default']),
121
121
  { externalDependencies: ['@playwright/test'] },
122
122
  ],