@mui/internal-code-infra 0.0.4-canary.18 → 0.0.4-canary.19
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 +3 -3
- package/src/utils/pnpm.mjs +4 -1
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/internal-code-infra",
|
|
3
|
-
"version": "0.0.4-canary.
|
|
3
|
+
"version": "0.0.4-canary.19",
|
|
4
4
|
"description": "Infra scripts and configs to be used across MUI repos.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -117,8 +117,8 @@
|
|
|
117
117
|
"typescript-eslint": "^8.57.1",
|
|
118
118
|
"unified": "^11.0.5",
|
|
119
119
|
"yargs": "^18.0.0",
|
|
120
|
-
"@mui/internal-babel-plugin-display-name": "1.0.4-canary.16",
|
|
121
120
|
"@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.25",
|
|
121
|
+
"@mui/internal-babel-plugin-display-name": "1.0.4-canary.16",
|
|
122
122
|
"@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.34"
|
|
123
123
|
},
|
|
124
124
|
"peerDependencies": {
|
|
@@ -165,7 +165,7 @@
|
|
|
165
165
|
"publishConfig": {
|
|
166
166
|
"access": "public"
|
|
167
167
|
},
|
|
168
|
-
"gitSha": "
|
|
168
|
+
"gitSha": "3e5ffed8f8d4b9cd2eb2119f8b68089c0be12701",
|
|
169
169
|
"scripts": {
|
|
170
170
|
"build": "tsgo -p tsconfig.build.json",
|
|
171
171
|
"typescript": "tsgo -noEmit",
|
package/src/utils/pnpm.mjs
CHANGED
|
@@ -178,7 +178,10 @@ export async function publishPackages(packages, options = {}) {
|
|
|
178
178
|
args.push('--no-git-checks');
|
|
179
179
|
}
|
|
180
180
|
|
|
181
|
-
await $({
|
|
181
|
+
await $({
|
|
182
|
+
stdio: 'inherit',
|
|
183
|
+
env: { npm_config_loglevel: 'warn' },
|
|
184
|
+
})`pnpm -r publish --access public --tag=${tag} ${args}`;
|
|
182
185
|
}
|
|
183
186
|
|
|
184
187
|
/**
|