@mui/internal-code-infra 0.0.4-canary.90 → 0.0.4-canary.92

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,6 @@
1
1
  {
2
2
  "name": "@mui/internal-code-infra",
3
- "version": "0.0.4-canary.90",
3
+ "version": "0.0.4-canary.92",
4
4
  "author": "MUI Team",
5
5
  "description": "Infra scripts and configs to be used across MUI repos.",
6
6
  "license": "MIT",
@@ -135,9 +135,9 @@
135
135
  "unist-util-visit": "^5.1.0",
136
136
  "yaml": "^2.9.0",
137
137
  "yargs": "^18.0.0",
138
- "@mui/internal-babel-plugin-display-name": "1.0.4-canary.22",
139
- "@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.29",
140
- "@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.39"
138
+ "@mui/internal-babel-plugin-display-name": "1.0.4-canary.23",
139
+ "@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.40",
140
+ "@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.30"
141
141
  },
142
142
  "peerDependencies": {
143
143
  "@next/eslint-plugin-next": "*",
@@ -169,7 +169,7 @@
169
169
  "@typescript-eslint/rule-tester": "8.63.0",
170
170
  "eslint": "10.6.0",
171
171
  "get-port": "7.2.0",
172
- "prettier": "3.8.3",
172
+ "prettier": "3.9.5",
173
173
  "remark": "15.0.1",
174
174
  "remark-mdx": "3.1.1",
175
175
  "serve": "14.2.6",
@@ -188,7 +188,7 @@
188
188
  "publishConfig": {
189
189
  "access": "public"
190
190
  },
191
- "gitSha": "d0c4e65df099189157250fa353917bcb28ff4110",
191
+ "gitSha": "212a100008dac58b2a1b39fe46523943921faf37",
192
192
  "scripts": {
193
193
  "build": "tsgo -p tsconfig.build.json",
194
194
  "typescript": "tsgo -noEmit",
@@ -93,7 +93,11 @@ async function fetchCommitsForPackage({ packagePath }) {
93
93
  return results;
94
94
  }
95
95
 
96
- const AUTHOR_EXCLUDE_LIST = ['renovate[bot]', 'dependabot[bot]'];
96
+ const AUTHOR_EXCLUDE_LIST = new Set([
97
+ 'renovate[bot]',
98
+ 'dependabot[bot]',
99
+ 'code-infra-renovate[bot]',
100
+ ]);
97
101
 
98
102
  /**
99
103
  * @param {string} message
@@ -144,7 +148,7 @@ async function prepareChangelogsFromGitCli(packagesToPublish, allPackages, canar
144
148
  // Exclude commits authored by bots
145
149
  .filter(
146
150
  // We want to allow commits from copilot or other AI tools, so only filter known bots
147
- (commit) => !AUTHOR_EXCLUDE_LIST.includes(commit.author),
151
+ (commit) => !AUTHOR_EXCLUDE_LIST.has(commit.author),
148
152
  )
149
153
  .map((commit) => `- ${cleanupCommitMessage(commit.message)} by ${commit.author}`);
150
154
 
@@ -56,8 +56,7 @@ const pet: Pet2 = '';
56
56
  ```
57
57
  */
58
58
  type LiteralUnion<LiteralType, BaseType extends Primitive> =
59
- | LiteralType
60
- | (BaseType & Record<never, never>);
59
+ LiteralType | (BaseType & Record<never, never>);
61
60
 
62
61
  declare namespace PackageJson {
63
62
  /**