@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.55",
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-resolve-imports": "2.0.7-canary.17",
62
- "@mui/internal-babel-plugin-minify-errors": "2.0.8-canary.7"
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": "ad561386f8eaa51a46c7ce0c17df6ad1ba929d3d",
93
+ "gitSha": "c14497c1ca9820fb2df4dd32deb013d50d7b9728",
94
94
  "scripts": {
95
95
  "typescript": "tsc -p tsconfig.json",
96
96
  "test": "pnpm -w test --project @mui/internal-code-infra",
@@ -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
 
@@ -3,7 +3,7 @@
3
3
  import chalk from 'chalk';
4
4
  import fs from 'node:fs/promises';
5
5
  import { globby } from 'globby';
6
- import path from 'path';
6
+ import path from 'node:path';
7
7
 
8
8
  /**
9
9
  * @typedef {Object} Args
@@ -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
  /**
@@ -8,7 +8,7 @@
8
8
  */
9
9
 
10
10
  import { Octokit } from '@octokit/rest';
11
- import * as fs from 'fs/promises';
11
+ import * as fs from 'node:fs/promises';
12
12
  import * as semver from 'semver';
13
13
  import gitUrlParse from 'git-url-parse';
14
14
  import { $ } from 'execa';
@@ -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
@@ -1,8 +1,8 @@
1
1
  #!/usr/bin/env node
2
2
 
3
3
  import { $ } from 'execa';
4
- import * as fs from 'fs/promises';
5
- import * as path from 'path';
4
+ import * as fs from 'node:fs/promises';
5
+ import * as path from 'node:path';
6
6
  import * as semver from 'semver';
7
7
 
8
8
  /**