@code-pushup/nx-plugin 0.53.1 → 0.54.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 +1 -1
- package/package.json +4 -4
- package/src/executors/cli/README.md +7 -7
- package/src/plugin/README.md +5 -5
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@code-pushup/nx-plugin",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.54.0",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"description": "Nx plugin to integrate the Code PushUp CLI into your workspace 🛠️",
|
|
6
6
|
"publishConfig": {
|
|
@@ -33,10 +33,10 @@
|
|
|
33
33
|
"executors": "./executors.json",
|
|
34
34
|
"dependencies": {
|
|
35
35
|
"@nx/devkit": "^17.1.3",
|
|
36
|
-
"tslib": "2.6.
|
|
36
|
+
"tslib": "^2.6.2",
|
|
37
37
|
"nx": "^17.1.3",
|
|
38
|
-
"@code-pushup/models": "0.
|
|
38
|
+
"@code-pushup/models": "0.54.0",
|
|
39
39
|
"zod": "^3.22.4",
|
|
40
|
-
"@code-pushup/utils": "0.
|
|
40
|
+
"@code-pushup/utils": "0.54.0"
|
|
41
41
|
}
|
|
42
42
|
}
|
|
@@ -15,9 +15,9 @@ Configure a target in your project json.
|
|
|
15
15
|
"name": "my-project",
|
|
16
16
|
"targets": {
|
|
17
17
|
"code-pushup": {
|
|
18
|
-
"executor": "@code-pushup/nx-plugin:cli"
|
|
19
|
-
}
|
|
20
|
-
}
|
|
18
|
+
"executor": "@code-pushup/nx-plugin:cli",
|
|
19
|
+
},
|
|
20
|
+
},
|
|
21
21
|
}
|
|
22
22
|
```
|
|
23
23
|
|
|
@@ -54,11 +54,11 @@ The following things happen:
|
|
|
54
54
|
"options": {
|
|
55
55
|
"projectPrefix": "cli", // upload.project = cli-my-project
|
|
56
56
|
"verbose": true,
|
|
57
|
-
"progress": false
|
|
57
|
+
"progress": false,
|
|
58
58
|
// persist and upload options as defined in CoreConfig
|
|
59
|
-
}
|
|
60
|
-
}
|
|
61
|
-
}
|
|
59
|
+
},
|
|
60
|
+
},
|
|
61
|
+
},
|
|
62
62
|
}
|
|
63
63
|
```
|
|
64
64
|
|
package/src/plugin/README.md
CHANGED
|
@@ -15,7 +15,7 @@ Why should you use this plugin?
|
|
|
15
15
|
// nx.json
|
|
16
16
|
{
|
|
17
17
|
//...
|
|
18
|
-
"plugins": ["@code-pushup/nx-plugin"]
|
|
18
|
+
"plugins": ["@code-pushup/nx-plugin"],
|
|
19
19
|
}
|
|
20
20
|
```
|
|
21
21
|
|
|
@@ -29,10 +29,10 @@ or with options:
|
|
|
29
29
|
{
|
|
30
30
|
"plugin": "@code-pushup/nx-plugin",
|
|
31
31
|
"options": {
|
|
32
|
-
"projectPrefix": "cli"
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
]
|
|
32
|
+
"projectPrefix": "cli",
|
|
33
|
+
},
|
|
34
|
+
},
|
|
35
|
+
],
|
|
36
36
|
}
|
|
37
37
|
```
|
|
38
38
|
|