Skip to content

Commit 53f7206

Browse files
committed
fix(build): production mjs import
Fix #1516
1 parent df83652 commit 53f7206

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

packages/router/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
"types": "./dist/vue-router.d.ts",
1212
"node": {
1313
"import": {
14-
"production": "./dist/vue-router.prod.cjs",
14+
"production": "./dist/vue-router.node.mjs",
1515
"development": "./dist/vue-router.node.mjs",
1616
"default": "./dist/vue-router.node.mjs"
1717
},

packages/router/rollup.config.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ function createConfig(buildName, output, plugins = []) {
8080
const isProductionBuild = /\.prod\.[cm]?js$/.test(output.file)
8181
const isGlobalBuild = buildName === 'global'
8282
const isRawESMBuild = buildName === 'browser'
83-
const isNodeBuild = buildName === 'cjs'
83+
const isNodeBuild = output.file.includes('.node.') || buildName === 'cjs'
8484
const isBundlerESMBuild = buildName === 'mjs'
8585

8686
if (isGlobalBuild) output.name = 'VueRouter'
@@ -204,8 +204,8 @@ function createReplacePlugin(
204204
}
205205

206206
function createProductionConfig(format) {
207-
const extension = format === 'cjs' ? 'cjs' : 'js'
208-
const descriptor = format === 'cjs' ? '' : `.${format}`
207+
const extension = format === 'cjs' || format === 'mjs' ? format : 'js'
208+
const descriptor = format === 'cjs' || format === 'mjs' ? '' : `.${format}`
209209
return createConfig(format, {
210210
file: `dist/${name}${descriptor}.prod.${extension}`,
211211
format: outputConfigs[format].format,

packages/router/src/global.d.ts

+1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,5 @@ declare var __DEV__: boolean
33
declare var __TEST__: boolean
44
declare var __FEATURE_PROD_DEVTOOLS__: boolean
55
declare var __BROWSER__: boolean
6+
declare var __NODE_JS__: boolean
67
declare var __CI__: boolean

0 commit comments

Comments
 (0)