@code-pushup/core 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.
Files changed (2) hide show
  1. package/index.js +5 -5
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -482,15 +482,15 @@ function refineCoreConfig(schema) {
482
482
  );
483
483
  }
484
484
 
485
+ // packages/models/src/lib/implementation/configuration.ts
486
+ var CONFIG_FILE_NAME = "code-pushup.config";
487
+ var SUPPORTED_CONFIG_FILE_FORMATS = ["ts", "mjs", "js"];
488
+
485
489
  // packages/models/src/lib/implementation/constants.ts
486
490
  var PERSIST_OUTPUT_DIR = ".code-pushup";
487
491
  var PERSIST_FORMAT = ["json"];
488
492
  var PERSIST_FILENAME = "report";
489
493
 
490
- // packages/models/src/lib/implementation/configuration.ts
491
- var CONFIG_FILE_NAME = "code-pushup.config";
492
- var SUPPORTED_CONFIG_FILE_FORMATS = ["ts", "mjs", "js"];
493
-
494
494
  // packages/models/src/lib/report.ts
495
495
  import { z as z12 } from "zod";
496
496
  var auditReportSchema = auditSchema.merge(auditOutputSchema);
@@ -1525,7 +1525,7 @@ var verboseUtils = (verbose) => ({
1525
1525
 
1526
1526
  // packages/core/package.json
1527
1527
  var name = "@code-pushup/core";
1528
- var version = "0.12.10";
1528
+ var version = "0.13.0";
1529
1529
 
1530
1530
  // packages/core/src/lib/implementation/execute-plugin.ts
1531
1531
  import chalk4 from "chalk";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@code-pushup/core",
3
- "version": "0.12.10",
3
+ "version": "0.13.0",
4
4
  "license": "MIT",
5
5
  "dependencies": {
6
6
  "@code-pushup/models": "*",