@code-pushup/cli 0.5.1 → 0.5.2

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 +2 -2
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -143,8 +143,8 @@ Each example is fully tested to give demonstrate best practices for plugin testi
143
143
 
144
144
  **Example for custom plugins:**
145
145
 
146
- - [File Size](../../examples/plugins/src/file-size)
147
- - [Package Json](../../examples/plugins/src/package-json)
146
+ - 📏 [File Size](../../examples/plugins/src/file-size)
147
+ - 📦 [Package Json](../../examples/plugins/src/package-json)
148
148
 
149
149
  ## CLI commands and options
150
150
 
package/index.js CHANGED
@@ -1653,7 +1653,7 @@ function auditOutputsCorrelateWithPluginOutput(auditOutputs, pluginConfigAudits)
1653
1653
 
1654
1654
  // packages/core/package.json
1655
1655
  var name = "@code-pushup/core";
1656
- var version = "0.5.1";
1656
+ var version = "0.5.2";
1657
1657
 
1658
1658
  // packages/core/src/lib/implementation/collect.ts
1659
1659
  async function collect(options2) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-pushup/cli",
3
- "version": "0.5.1",
3
+ "version": "0.5.2",
4
4
  "bin": {
5
5
  "code-pushup": "index.js"
6
6
  },