Skip to content

Commit 2185f72

Browse files
authoredJul 6, 2022
fix: cjs interop export names local clash, fix #8950 (#8953)
1 parent bef378d commit 2185f72

File tree

4 files changed

+21
-10
lines changed

4 files changed

+21
-10
lines changed
 

‎packages/vite/src/node/__tests__/plugins/import.spec.ts

+8-8
Original file line numberDiff line numberDiff line change
@@ -70,9 +70,9 @@ describe('transformCjsImport', () => {
7070
)
7171
).toBe(
7272
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
73-
'const useState = __vite__cjsImport0_react["useState"]; ' +
74-
'const Component = __vite__cjsImport0_react["Component"]; ' +
75-
'export { useState, Component }'
73+
'const __vite__cjsExport_useState = __vite__cjsImport0_react["useState"]; ' +
74+
'const __vite__cjsExport_Component = __vite__cjsImport0_react["Component"]; ' +
75+
'export { __vite__cjsExport_useState as useState, __vite__cjsExport_Component as Component }'
7676
)
7777

7878
expect(
@@ -84,9 +84,9 @@ describe('transformCjsImport', () => {
8484
)
8585
).toBe(
8686
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
87-
'const useStateAlias = __vite__cjsImport0_react["useState"]; ' +
88-
'const ComponentAlias = __vite__cjsImport0_react["Component"]; ' +
89-
'export { useStateAlias, ComponentAlias }'
87+
'const __vite__cjsExport_useStateAlias = __vite__cjsImport0_react["useState"]; ' +
88+
'const __vite__cjsExport_ComponentAlias = __vite__cjsImport0_react["Component"]; ' +
89+
'export { __vite__cjsExport_useStateAlias as useStateAlias, __vite__cjsExport_ComponentAlias as ComponentAlias }'
9090
)
9191
})
9292

@@ -108,8 +108,8 @@ describe('transformCjsImport', () => {
108108
)
109109
).toBe(
110110
'import __vite__cjsImport0_react from "./node_modules/.vite/deps/react.js"; ' +
111-
'const React = __vite__cjsImport0_react.__esModule ? __vite__cjsImport0_react.default : __vite__cjsImport0_react; ' +
112-
'export { React }'
111+
'const __vite__cjsExport_React = __vite__cjsImport0_react.__esModule ? __vite__cjsImport0_react.default : __vite__cjsImport0_react; ' +
112+
'export { __vite__cjsExport_React as React }'
113113
)
114114

115115
expect(

‎packages/vite/src/node/plugins/importAnalysis.ts

+6-2
Original file line numberDiff line numberDiff line change
@@ -824,6 +824,7 @@ export function transformCjsImport(
824824
spec.exported.type === 'Identifier'
825825
) {
826826
// for ExportSpecifier, local name is same as imported name
827+
// prefix the variable name to avoid clashing with other local variables
827828
const importedName = spec.local.name
828829
// we want to specify exported name as variable and re-export it
829830
const exportedName = spec.exported.name
@@ -833,8 +834,11 @@ export function transformCjsImport(
833834
)
834835
importNames.push({ importedName, localName: defaultExports })
835836
} else {
836-
importNames.push({ importedName, localName: exportedName })
837-
exportNames.push(exportedName)
837+
const localName = makeLegalIdentifier(
838+
`__vite__cjsExport_${exportedName}`
839+
)
840+
importNames.push({ importedName, localName })
841+
exportNames.push(`${localName} as ${exportedName}`)
838842
}
839843
}
840844
}

‎playground/alias/index.html

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ <h1>Alias</h1>
4545

4646
// aliased to an absolute URL in CJS, should be optimized
4747
import { isFunction } from '@vue/shared'
48+
// also check name clash for aliased deps
49+
export { isFunction } from '@vue/shared'
4850
console.log(isFunction(() => {}))
4951
</script>
5052

‎playground/optimize-deps/cjs.js

+5
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,11 @@ import ReactDOM from 'react-dom/client'
66
import { Socket } from 'phoenix'
77
import clip from 'clipboard'
88

9+
// Test exporting a name that was already imported
10+
export { useState } from 'react'
11+
export { useState as anotherNameForUseState } from 'react'
12+
export { default as React } from 'react'
13+
914
if (typeof clip === 'function') {
1015
text('.cjs-clipboard', 'ok')
1116
}

0 commit comments

Comments
 (0)
Please sign in to comment.