@code-pushup/cli 0.50.0 → 0.52.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 +20 -1
- package/index.js +502 -303
- package/package.json +7 -4
- package/src/lib/implementation/core-config.middleware.d.ts +3 -4
- package/src/lib/implementation/filter.middleware.d.ts +2 -0
- package/src/lib/implementation/filter.model.d.ts +9 -0
- package/src/lib/implementation/filter.options.d.ts +7 -0
- package/src/lib/implementation/validate-filter-options.utils.d.ts +13 -0
- package/src/lib/options.d.ts +2 -0
- package/src/lib/implementation/only-plugins.middleware.d.ts +0 -2
- package/src/lib/implementation/only-plugins.model.d.ts +0 -6
- package/src/lib/implementation/only-plugins.options.d.ts +0 -4
- package/src/lib/implementation/skip-plugins.middleware.d.ts +0 -2
- package/src/lib/implementation/skip-plugins.model.d.ts +0 -6
- package/src/lib/implementation/skip-plugins.options.d.ts +0 -4
- package/src/lib/implementation/validate-plugin-filter-options.utils.d.ts +0 -8
package/README.md
CHANGED
|
@@ -118,7 +118,26 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
|
|
|
118
118
|
|
|
119
119
|
## Portal integration
|
|
120
120
|
|
|
121
|
-
If you have access to the Code PushUp portal,
|
|
121
|
+
If you have access to the Code PushUp portal, you can enable report uploads by installing the `@code-pushup/portal-client` package.
|
|
122
|
+
|
|
123
|
+
<details>
|
|
124
|
+
<summary>Installation command for <code>npm</code>, <code>yarn</code> and <code>pnpm</code></summary>
|
|
125
|
+
|
|
126
|
+
```sh
|
|
127
|
+
npm install --save-dev @code-pushup/portal-client
|
|
128
|
+
```
|
|
129
|
+
|
|
130
|
+
```sh
|
|
131
|
+
yarn add --dev @code-pushup/portal-client
|
|
132
|
+
```
|
|
133
|
+
|
|
134
|
+
```sh
|
|
135
|
+
pnpm add --save-dev @code-pushup/portal-client
|
|
136
|
+
```
|
|
137
|
+
|
|
138
|
+
</details>
|
|
139
|
+
|
|
140
|
+
Once the package is installed, update your configuration file to include your portal credentials:
|
|
122
141
|
|
|
123
142
|
```ts
|
|
124
143
|
const config: CoreConfig = {
|