@code-pushup/cli 0.12.3 → 0.12.4

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 +5 -5
  2. package/index.js +1 -1
  3. package/package.json +1 -1
package/README.md CHANGED
@@ -40,9 +40,9 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
40
40
 
41
41
  </details>
42
42
 
43
- 2. Create a `code-pushup.config.js` configuration file (`.ts` or `.mjs` extensions are also supported).
43
+ 2. Create a `code-pushup.config.ts` configuration file (`.js` or `.mjs` extensions are also supported).
44
44
 
45
- ```js
45
+ ```ts
46
46
  export default {
47
47
  plugins: [
48
48
  // ...
@@ -56,7 +56,7 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
56
56
  npm install --save-dev @code-pushup/eslint-plugin
57
57
  ```
58
58
 
59
- ```js
59
+ ```ts
60
60
  import eslintPlugin from '@code-pushup/eslint-plugin';
61
61
 
62
62
  export default {
@@ -76,7 +76,7 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
76
76
 
77
77
  1. Define your custom categories.
78
78
 
79
- ```js
79
+ ```ts
80
80
  export default {
81
81
  // ...
82
82
  categories: [
@@ -107,7 +107,7 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
107
107
 
108
108
  If you have access to the Code PushUp portal, provide credentials in order to upload reports.
109
109
 
110
- ```js
110
+ ```ts
111
111
  export default {
112
112
  // ...
113
113
  upload: {
package/index.js CHANGED
@@ -1533,7 +1533,7 @@ var verboseUtils = (verbose) => ({
1533
1533
 
1534
1534
  // packages/core/package.json
1535
1535
  var name = "@code-pushup/core";
1536
- var version = "0.12.3";
1536
+ var version = "0.12.4";
1537
1537
 
1538
1538
  // packages/core/src/lib/implementation/execute-plugin.ts
1539
1539
  import chalk4 from "chalk";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-pushup/cli",
3
- "version": "0.12.3",
3
+ "version": "0.12.4",
4
4
  "license": "MIT",
5
5
  "bin": {
6
6
  "code-pushup": "index.js"