@code-pushup/cli 0.8.18 → 0.8.19
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 +4 -4
- package/index.js +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -139,7 +139,7 @@ jobs:
|
|
|
139
139
|
We provide comprehensive documentation on [how to create a custom plugin](./docs/custom-plugins.md).
|
|
140
140
|
|
|
141
141
|
The repository also maintains a set of plugin examples showcasing different scenarios.
|
|
142
|
-
Each example is fully tested to
|
|
142
|
+
Each example is fully tested to demonstrate best practices for plugin testing as well.
|
|
143
143
|
|
|
144
144
|
**Example for custom plugins:**
|
|
145
145
|
|
|
@@ -170,7 +170,7 @@ Each example is fully tested to give demonstrate best practices for plugin testi
|
|
|
170
170
|
| **`--onlyPlugins`** | `string[]` | `[]` | Only run the specified plugins. Applicable to all commands except `upload`. |
|
|
171
171
|
|
|
172
172
|
> [!NOTE]
|
|
173
|
-
> All common options,
|
|
173
|
+
> All common options, except `--onlyPlugins`, can be specified in the configuration file as well.
|
|
174
174
|
> CLI arguments take precedence over configuration file options.
|
|
175
175
|
|
|
176
176
|
> [!NOTE]
|
|
@@ -184,7 +184,7 @@ Usage:
|
|
|
184
184
|
`code-pushup collect [options]`
|
|
185
185
|
|
|
186
186
|
Description:
|
|
187
|
-
The command initializes the necessary plugins
|
|
187
|
+
The command initializes and executes the necessary plugins and collects the results. Based on the results it generates a comprehensive report.
|
|
188
188
|
|
|
189
189
|
Refer to the [Common Command Options](#common-command-options) for the list of available options.
|
|
190
190
|
|
|
@@ -204,7 +204,7 @@ Usage:
|
|
|
204
204
|
`code-pushup autorun [options]`
|
|
205
205
|
|
|
206
206
|
Description:
|
|
207
|
-
Run plugins, collect results and upload report to the Code PushUp portal.
|
|
207
|
+
Run plugins, collect results and upload the report to the Code PushUp portal.
|
|
208
208
|
|
|
209
209
|
Refer to the [Common Command Options](#common-command-options) for the list of available options.
|
|
210
210
|
|
package/index.js
CHANGED
|
@@ -1725,7 +1725,7 @@ function auditOutputsCorrelateWithPluginOutput(auditOutputs, pluginConfigAudits)
|
|
|
1725
1725
|
|
|
1726
1726
|
// packages/core/package.json
|
|
1727
1727
|
var name = "@code-pushup/core";
|
|
1728
|
-
var version = "0.8.
|
|
1728
|
+
var version = "0.8.19";
|
|
1729
1729
|
|
|
1730
1730
|
// packages/core/src/lib/implementation/collect.ts
|
|
1731
1731
|
async function collect(options2) {
|