@mui/internal-code-infra 0.0.2-canary.55 → 0.0.2-canary.56
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.2-canary.
|
|
3
|
+
"version": "0.0.2-canary.56",
|
|
4
4
|
"description": "Infra scripts and configs to be used across MUI repos.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -58,8 +58,8 @@
|
|
|
58
58
|
"typescript-eslint": "^8.39.1",
|
|
59
59
|
"yargs": "^18.0.0",
|
|
60
60
|
"@mui/internal-babel-plugin-display-name": "1.0.4-canary.5",
|
|
61
|
-
"@mui/internal-babel-plugin-
|
|
62
|
-
"@mui/internal-babel-plugin-
|
|
61
|
+
"@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.7",
|
|
62
|
+
"@mui/internal-babel-plugin-resolve-imports": "2.0.7-canary.18"
|
|
63
63
|
},
|
|
64
64
|
"peerDependencies": {
|
|
65
65
|
"eslint": "^9.0.0",
|
|
@@ -90,7 +90,7 @@
|
|
|
90
90
|
"publishConfig": {
|
|
91
91
|
"access": "public"
|
|
92
92
|
},
|
|
93
|
-
"gitSha": "
|
|
93
|
+
"gitSha": "c14497c1ca9820fb2df4dd32deb013d50d7b9728",
|
|
94
94
|
"scripts": {
|
|
95
95
|
"typescript": "tsc -p tsconfig.json",
|
|
96
96
|
"test": "pnpm -w test --project @mui/internal-code-infra",
|
package/src/cli/cmdArgosPush.mjs
CHANGED
|
@@ -2,9 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
/* eslint-disable no-console */
|
|
4
4
|
|
|
5
|
-
import * as fs from 'fs/promises';
|
|
6
|
-
import * as os from 'os';
|
|
7
|
-
import * as path from 'path';
|
|
5
|
+
import * as fs from 'node:fs/promises';
|
|
6
|
+
import * as os from 'node:os';
|
|
7
|
+
import * as path from 'node:path';
|
|
8
8
|
import { globby } from 'globby';
|
|
9
9
|
import { upload } from '@argos-ci/core';
|
|
10
10
|
|
package/src/cli/cmdJsonLint.mjs
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
* @typedef {import('./pnpm.mjs').PublicPackage} PublicPackage
|
|
7
7
|
*/
|
|
8
8
|
|
|
9
|
-
import * as fs from 'fs/promises';
|
|
10
|
-
import * as path from 'path';
|
|
9
|
+
import * as fs from 'node:fs/promises';
|
|
10
|
+
import * as path from 'node:path';
|
|
11
11
|
import { getWorkspacePackages } from './pnpm.mjs';
|
|
12
12
|
|
|
13
13
|
/**
|
package/src/cli/cmdPublish.mjs
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
|
|
3
|
-
import fs from 'fs/promises';
|
|
4
|
-
import os from 'os';
|
|
5
|
-
import path from 'path';
|
|
3
|
+
import fs from 'node:fs/promises';
|
|
4
|
+
import os from 'node:os';
|
|
5
|
+
import path from 'node:path';
|
|
6
6
|
import * as semver from 'semver';
|
|
7
7
|
import { $ } from 'execa';
|
|
8
8
|
import { resolveVersion, findDependencyVersionFromSpec } from './pnpm.mjs';
|
package/src/cli/pnpm.mjs
CHANGED