@mui/internal-babel-plugin-display-name 1.0.4-canary.4 → 1.0.4-canary.5

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/index.js +1 -1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/internal-babel-plugin-display-name",
3
- "version": "1.0.4-canary.4",
3
+ "version": "1.0.4-canary.5",
4
4
  "description": "Babel plugin for automatic React display name generation with tree-shaking and prefix support, forked from @zendesk/babel-plugin-react-displayname.",
5
5
  "repository": {
6
6
  "type": "git",
@@ -35,7 +35,7 @@
35
35
  "babel-plugin"
36
36
  ],
37
37
  "homepage": "https://github.com/mui/mui-public",
38
- "gitSha": "0cb5046984e4e05e1062ae9555e7397b60ea1972",
38
+ "gitSha": "73645670cf95a655e5b36c53665d3f65ddbc6386",
39
39
  "scripts": {
40
40
  "test": "jest"
41
41
  }
package/src/index.js CHANGED
@@ -469,6 +469,6 @@ function setInternalFunctionName(t, path, name) {
469
469
  if (path.isArrowFunctionExpression()) {
470
470
  path.arrowFunctionToExpression();
471
471
  }
472
- // @ts-expect-error
472
+ // @ts-expect-error Not really an error
473
473
  path.node.id = id;
474
474
  }