Skip to content

Commit

Permalink
test(un-ts#136): try to reproduce the issue
Browse files Browse the repository at this point in the history
  • Loading branch information
SukkaW committed Aug 29, 2024
1 parent 757ffa9 commit 7d08cd4
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@
"hermes-eslint": "^0.23.1",
"jest": "^29.7.0",
"klaw-sync": "^6.0.0",
"markdown-it-anchor": "^9.1.0",
"npm-run-all2": "^6.1.2",
"prettier": "^3.2.5",
"redux": "^5.0.1",
Expand Down
6 changes: 6 additions & 0 deletions test/fixtures/export-default-as-named-decl.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
// https://github.com/un-ts/eslint-plugin-import-x/issues/136
// Vite / Rollup might mangle exported functions' original name

function foo() {}

export { foo as default }
5 changes: 5 additions & 0 deletions test/rules/no-rename-default.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@ ruleTester.run('no-rename-default', rule, {
`import _ from './no-rename-default/anonymous-class'`,
`import _ from './no-rename-default/anonymous-object'`,
`import _ from './no-rename-default/anonymous-primitive'`,

// https://github.com/un-ts/eslint-plugin-import-x/issues/136
test({
code: '/** #136 */ import exportDefaultStringAndNamed from "./export-default-as-named-decl"',
}),
],
invalid: [],
})
Expand Down
5 changes: 5 additions & 0 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -5396,6 +5396,11 @@ map-obj@^4.0.0:
resolved "https://registry.yarnpkg.com/map-obj/-/map-obj-4.3.0.tgz#9304f906e93faae70880da102a9f1df0ea8bb05a"
integrity sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==

markdown-it-anchor@^9.1.0:
version "9.1.0"
resolved "https://registry.yarnpkg.com/markdown-it-anchor/-/markdown-it-anchor-9.1.0.tgz#5780716c52baa8fbb3d88fad5294bfd0e64a22a3"
integrity sha512-a5WqArGkkLQZUEdC9cpkWvrdLJyS45r+28nE4jxiQynFLZ6VXdX4+hulCRzxmS+hi9+Dwfi5zTFIz3dY1YA6xQ==

markdown-table@^3.0.3:
version "3.0.3"
resolved "https://registry.yarnpkg.com/markdown-table/-/markdown-table-3.0.3.tgz#e6331d30e493127e031dd385488b5bd326e4a6bd"
Expand Down

0 comments on commit 7d08cd4

Please sign in to comment.