@nx/playwright 22.7.0-beta.5 → 22.7.0-beta.7
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/assets.json +23 -0
- package/package.json +7 -8
- package/project.json +2 -46
package/assets.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"outDir": "dist/packages/playwright",
|
|
3
|
+
"assets": [
|
|
4
|
+
{
|
|
5
|
+
"glob": "**/files/**"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"glob": "**/*.json",
|
|
9
|
+
"ignore": ["tsconfig*.json", "project.json", ".eslintrc.json"]
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
"glob": "**/*.js",
|
|
13
|
+
"ignore": ["**/jest.config.js"]
|
|
14
|
+
},
|
|
15
|
+
{
|
|
16
|
+
"glob": "**/*.d.ts"
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
"glob": "PLUGIN.md"
|
|
20
|
+
},
|
|
21
|
+
"LICENSE"
|
|
22
|
+
]
|
|
23
|
+
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@nx/playwright",
|
|
3
|
-
"version": "22.7.0-beta.
|
|
3
|
+
"version": "22.7.0-beta.7",
|
|
4
4
|
"type": "commonjs",
|
|
5
5
|
"homepage": "https://nx.dev",
|
|
6
6
|
"private": false,
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"Front-end"
|
|
23
23
|
],
|
|
24
24
|
"main": "./index.js",
|
|
25
|
-
"
|
|
25
|
+
"types": "./index.d.ts",
|
|
26
26
|
"author": "Victor Savkin",
|
|
27
27
|
"license": "MIT",
|
|
28
28
|
"bugs": {
|
|
@@ -34,14 +34,14 @@
|
|
|
34
34
|
"directory": "packages/playwright"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@nx/devkit": "22.7.0-beta.
|
|
38
|
-
"@nx/eslint": "22.7.0-beta.
|
|
39
|
-
"@nx/js": "22.7.0-beta.
|
|
37
|
+
"@nx/devkit": "22.7.0-beta.7",
|
|
38
|
+
"@nx/eslint": "22.7.0-beta.7",
|
|
39
|
+
"@nx/js": "22.7.0-beta.7",
|
|
40
40
|
"tslib": "^2.3.0",
|
|
41
41
|
"minimatch": "10.2.4"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"nx": "22.7.0-beta.
|
|
44
|
+
"nx": "22.7.0-beta.7"
|
|
45
45
|
},
|
|
46
46
|
"peerDependencies": {
|
|
47
47
|
"@playwright/test": "^1.36.0"
|
|
@@ -68,6 +68,5 @@
|
|
|
68
68
|
},
|
|
69
69
|
"nx-migrations": {
|
|
70
70
|
"migrations": "./migrations.json"
|
|
71
|
-
}
|
|
72
|
-
"types": "./index.d.ts"
|
|
71
|
+
}
|
|
73
72
|
}
|
package/project.json
CHANGED
|
@@ -6,52 +6,8 @@
|
|
|
6
6
|
"targets": {
|
|
7
7
|
"build": {
|
|
8
8
|
"outputs": ["{workspaceRoot}/dist/packages/playwright/README.md"],
|
|
9
|
-
"commands": ["node ./scripts/copy-readme.js playwright"]
|
|
10
|
-
|
|
11
|
-
"legacy-post-build": {
|
|
12
|
-
"executor": "@nx/workspace-plugin:legacy-post-build",
|
|
13
|
-
"options": {
|
|
14
|
-
"tsConfig": "./tsconfig.lib.json",
|
|
15
|
-
"assets": [
|
|
16
|
-
{
|
|
17
|
-
"input": "packages/playwright",
|
|
18
|
-
"glob": "**/files/**",
|
|
19
|
-
"output": "/"
|
|
20
|
-
},
|
|
21
|
-
{
|
|
22
|
-
"input": "packages/playwright",
|
|
23
|
-
"glob": "**/files/**/.gitkeep",
|
|
24
|
-
"output": "/"
|
|
25
|
-
},
|
|
26
|
-
{
|
|
27
|
-
"input": "packages/playwright",
|
|
28
|
-
"glob": "**/*.json",
|
|
29
|
-
"ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"],
|
|
30
|
-
"output": "/"
|
|
31
|
-
},
|
|
32
|
-
{
|
|
33
|
-
"input": "packages/playwright",
|
|
34
|
-
"glob": "**/*.js",
|
|
35
|
-
"ignore": ["**/jest.config.js"],
|
|
36
|
-
"output": "/"
|
|
37
|
-
},
|
|
38
|
-
{
|
|
39
|
-
"input": "packages/playwright",
|
|
40
|
-
"glob": "**/*.d.ts",
|
|
41
|
-
"output": "/"
|
|
42
|
-
},
|
|
43
|
-
{
|
|
44
|
-
"input": "packages/playwright",
|
|
45
|
-
"glob": "PLUGIN.md",
|
|
46
|
-
"output": "/"
|
|
47
|
-
},
|
|
48
|
-
{
|
|
49
|
-
"input": "",
|
|
50
|
-
"glob": "LICENSE",
|
|
51
|
-
"output": "/"
|
|
52
|
-
}
|
|
53
|
-
]
|
|
54
|
-
}
|
|
9
|
+
"commands": ["node ./scripts/copy-readme.js playwright"],
|
|
10
|
+
"inputs": ["copyReadme"]
|
|
55
11
|
}
|
|
56
12
|
},
|
|
57
13
|
"tags": []
|