@mui/internal-bundle-size-checker 1.0.9-canary.1 → 1.0.9-canary.3

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-bundle-size-checker",
3
- "version": "1.0.9-canary.1",
3
+ "version": "1.0.9-canary.3",
4
4
  "description": "Bundle size checker for MUI packages.",
5
5
  "type": "module",
6
6
  "main": "./src/index.js",
@@ -21,7 +21,7 @@
21
21
  "dependencies": {
22
22
  "@aws-sdk/client-s3": "^3.515.0",
23
23
  "@aws-sdk/credential-providers": "^3.787.0",
24
- "@babel/core": "^7.27.1",
24
+ "@babel/core": "^7.27.4",
25
25
  "@babel/preset-react": "^7.18.6",
26
26
  "@babel/preset-typescript": "^7.27.1",
27
27
  "babel-loader": "^10.0.0",
@@ -48,7 +48,7 @@
48
48
  "@types/webpack-bundle-analyzer": "^4.7.0",
49
49
  "@types/yargs": "^17.0.33"
50
50
  },
51
- "gitSha": "89c91764b62f0af7ce6ee4ec52c8e45b47e3c8aa",
51
+ "gitSha": "d07b12b0d9e2420d77cb9b7212b836e588b03e1d",
52
52
  "scripts": {
53
53
  "typescript": "tsc -p tsconfig.json",
54
54
  "test": "pnpm -w test --project @mui/internal-bundle-size-checker"
package/src/cli.js CHANGED
@@ -4,7 +4,7 @@ import path from 'path';
4
4
  import os from 'os';
5
5
  import fs from 'fs/promises';
6
6
  import yargs from 'yargs';
7
- import Piscina from 'piscina';
7
+ import { Piscina } from 'piscina';
8
8
  import micromatch from 'micromatch';
9
9
  import { loadConfig } from './configLoader.js';
10
10
  import { uploadSnapshot } from './uploadSnapshot.js';
@@ -1,3 +1,4 @@
1
+ /* eslint-disable testing-library/render-result-naming-convention */
1
2
  import { vi, describe, it, expect, beforeEach } from 'vitest';
2
3
  import { renderMarkdownReport } from './renderMarkdownReport.js';
3
4
  import * as fetchSnapshotModule from './fetchSnapshot.js';
package/.eslintrc.cjs DELETED
@@ -1,14 +0,0 @@
1
- module.exports = {
2
- rules: {
3
- 'import/prefer-default-export': 'off',
4
- // Allow .js file extensions in import statements for ESM compatibility
5
- 'import/extensions': [
6
- 'error',
7
- 'ignorePackages',
8
- {
9
- js: 'always',
10
- mjs: 'always',
11
- },
12
- ],
13
- },
14
- };