@mui/internal-bundle-size-checker 1.0.9-canary.74 → 1.0.9-canary.76

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/package.json CHANGED
@@ -1,6 +1,7 @@
1
1
  {
2
2
  "name": "@mui/internal-bundle-size-checker",
3
- "version": "1.0.9-canary.74",
3
+ "version": "1.0.9-canary.76",
4
+ "author": "MUI Team",
4
5
  "description": "Bundle size checker for MUI packages.",
5
6
  "license": "MIT",
6
7
  "type": "module",
@@ -44,7 +45,7 @@
44
45
  "@types/micromatch": "4.0.10",
45
46
  "@types/yargs": "17.0.35"
46
47
  },
47
- "gitSha": "fcc57442eeb92486028b70bb43a2b7d09eaa7e52",
48
+ "gitSha": "a24bc8adf051b6b19ebdae8a80aaa2650d9b2ae7",
48
49
  "scripts": {
49
50
  "build": "tsgo -p tsconfig.build.json",
50
51
  "test": "pnpm -w test --project @mui/internal-bundle-size-checker",
@@ -81,9 +81,7 @@ export function applyUploadConfigDefaults(uploadConfig, ciInfo) {
81
81
  }
82
82
 
83
83
  const apiUrl =
84
- uploadConfig.apiUrl ||
85
- process.env.CI_REPORT_API_URL ||
86
- 'https://code-infra-dashboard.onrender.com';
84
+ uploadConfig.apiUrl || process.env.CI_REPORT_API_URL || 'https://frontend-public.mui.com';
87
85
 
88
86
  // Return the normalized config
89
87
  /** @type {NormalizedUploadConfig} */
@@ -1,6 +1,6 @@
1
1
  // @ts-check
2
2
 
3
- const DEFAULT_API_URL = 'https://code-infra-dashboard.onrender.com';
3
+ const DEFAULT_API_URL = 'https://frontend-public.mui.com';
4
4
 
5
5
  /**
6
6
  * @typedef {{ success: boolean, skipped?: boolean }} SyncPrCommentResult
package/src/types.d.ts CHANGED
@@ -3,7 +3,7 @@ export interface UploadConfig {
3
3
  repo?: string; // The repository name (e.g., "mui/material-ui")
4
4
  branch?: string; // Optional branch name (defaults to current Git branch)
5
5
  isPullRequest?: boolean; // Whether this is a pull request build (defaults to CI detection)
6
- apiUrl?: string; // Dashboard API URL (defaults to https://code-infra-dashboard.onrender.com)
6
+ apiUrl?: string; // Dashboard API URL (defaults to https://frontend-public.mui.com)
7
7
  }
8
8
 
9
9
  // Normalized upload configuration where all properties are defined