@code-pushup/cli 0.12.10 → 0.13.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 +1 -1
- package/index.js +5 -5
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -54,7 +54,7 @@ _If you're looking for programmatic usage, then refer to the underlying [@code-p
|
|
|
54
54
|
export default config;
|
|
55
55
|
```
|
|
56
56
|
|
|
57
|
-
3. Add plugins as per your project needs (e.g. [@code-pushup/eslint-plugin](../plugin-eslint/README.md)).
|
|
57
|
+
3. Add plugins as per your project needs (e.g. [@code-pushup/eslint-plugin](../plugin-eslint/README.md) or [@code-pushup/coverage-plugin](../plugin-coverage/README.md)).
|
|
58
58
|
|
|
59
59
|
```sh
|
|
60
60
|
npm install --save-dev @code-pushup/eslint-plugin
|
package/index.js
CHANGED
|
@@ -490,15 +490,15 @@ function refineCoreConfig(schema) {
|
|
|
490
490
|
);
|
|
491
491
|
}
|
|
492
492
|
|
|
493
|
+
// packages/models/src/lib/implementation/configuration.ts
|
|
494
|
+
var CONFIG_FILE_NAME = "code-pushup.config";
|
|
495
|
+
var SUPPORTED_CONFIG_FILE_FORMATS = ["ts", "mjs", "js"];
|
|
496
|
+
|
|
493
497
|
// packages/models/src/lib/implementation/constants.ts
|
|
494
498
|
var PERSIST_OUTPUT_DIR = ".code-pushup";
|
|
495
499
|
var PERSIST_FORMAT = ["json"];
|
|
496
500
|
var PERSIST_FILENAME = "report";
|
|
497
501
|
|
|
498
|
-
// packages/models/src/lib/implementation/configuration.ts
|
|
499
|
-
var CONFIG_FILE_NAME = "code-pushup.config";
|
|
500
|
-
var SUPPORTED_CONFIG_FILE_FORMATS = ["ts", "mjs", "js"];
|
|
501
|
-
|
|
502
502
|
// packages/models/src/lib/report.ts
|
|
503
503
|
import { z as z12 } from "zod";
|
|
504
504
|
var auditReportSchema = auditSchema.merge(auditOutputSchema);
|
|
@@ -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.
|
|
1536
|
+
var version = "0.13.0";
|
|
1537
1537
|
|
|
1538
1538
|
// packages/core/src/lib/implementation/execute-plugin.ts
|
|
1539
1539
|
import chalk4 from "chalk";
|