@code-pushup/cli 0.4.4 → 0.4.5

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.
Files changed (3) hide show
  1. package/README.md +7 -1
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -8,6 +8,12 @@
8
8
 
9
9
  ---
10
10
 
11
+ | 📊 Getting Started | 🌐 Portal Integration | 🛠️ CI Automation |
12
+ | :--------------------------------------------------: | :------------------------------------------------: | :----------------------------------------: |
13
+ | **[How to setup](#getting-started)** a basic project | Sort, filter **[your goals](#portal-integration)** | Updates **[on every PR](#-ci-automation)** |
14
+
15
+ ---
16
+
11
17
  The Code PushUp CLI serves to **collect audit results**, and optionally **upload the report** to the Code PushUp portal.
12
18
 
13
19
  It can be used locally in your repository, or integrated in your CI environment.
@@ -109,7 +115,7 @@ export default {
109
115
  };
110
116
  ```
111
117
 
112
- ## CI automation
118
+ ## 🛠 CI automation
113
119
 
114
120
  Example for GitHub Actions:
115
121
 
package/index.js CHANGED
@@ -1640,7 +1640,7 @@ function auditOutputsCorrelateWithPluginOutput(auditOutputs, pluginConfigAudits)
1640
1640
 
1641
1641
  // packages/core/package.json
1642
1642
  var name = "@code-pushup/core";
1643
- var version = "0.4.4";
1643
+ var version = "0.4.5";
1644
1644
 
1645
1645
  // packages/core/src/lib/implementation/collect.ts
1646
1646
  async function collect(options2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-pushup/cli",
3
- "version": "0.4.4",
3
+ "version": "0.4.5",
4
4
  "bin": {
5
5
  "code-pushup": "index.js"
6
6
  },