Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: derive proper js extension from package type #8382

Merged
merged 7 commits into from May 30, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
37 changes: 25 additions & 12 deletions packages/vite/src/node/build.ts
Expand Up @@ -422,21 +422,26 @@ async function doBuild(
try {
const buildOutputOptions = (output: OutputOptions = {}): OutputOptions => {
const cjsSsrBuild = ssr && config.ssr?.format === 'cjs'
const format = output.format || (cjsSsrBuild ? 'cjs' : 'es')
const jsExt =
(ssr && config.ssr?.target !== 'webworker') || libOptions
? resolveOutputJsExtension(format, getPkgJson(config.root)?.type)
: 'js'
return {
dir: outDir,
// Default format is 'es' for regular and for SSR builds
format: cjsSsrBuild ? 'cjs' : 'es',
format,
exports: cjsSsrBuild ? 'named' : 'auto',
sourcemap: options.sourcemap,
name: libOptions ? libOptions.name : undefined,
generatedCode: 'es2015',
entryFileNames: ssr
? `[name].js`
? `[name].${jsExt}`
: libOptions
? resolveLibFilename(libOptions, output.format || 'es', config.root)
? resolveLibFilename(libOptions, format, config.root, jsExt)
: path.posix.join(options.assetsDir, `[name].[hash].js`),
chunkFileNames: libOptions
? `[name].[hash].js`
? `[name].[hash].${jsExt}`
: path.posix.join(options.assetsDir, `[name].[hash].js`),
assetFileNames: libOptions
? `[name].[ext]`
Expand Down Expand Up @@ -575,10 +580,24 @@ function getPkgName(name: string) {
return name?.startsWith('@') ? name.split('/')[1] : name
}

type JsExt = 'js' | 'cjs' | 'mjs'

function resolveOutputJsExtension(
format: ModuleFormat,
type: string = 'commonjs'
): JsExt {
if (type === 'module') {
return format === 'cjs' || format === 'umd' ? 'cjs' : 'js'
} else {
return format === 'es' ? 'mjs' : 'js'
}
}

export function resolveLibFilename(
libOptions: LibraryOptions,
format: ModuleFormat,
root: string
root: string,
extension?: JsExt
): string {
if (typeof libOptions.fileName === 'function') {
return libOptions.fileName(format)
Expand All @@ -592,13 +611,7 @@ export function resolveLibFilename(
'Name in package.json is required if option "build.lib.fileName" is not provided.'
)

let extension: string

if (packageJson?.type === 'module') {
extension = format === 'cjs' || format === 'umd' ? 'cjs' : 'js'
} else {
extension = format === 'es' ? 'mjs' : 'js'
}
extension ??= resolveOutputJsExtension(format, packageJson.type)

if (format === 'cjs' || format === 'es') {
return `${name}.${extension}`
Expand Down
2 changes: 1 addition & 1 deletion playground/legacy/__tests__/ssr/serve.ts
Expand Up @@ -22,7 +22,7 @@ export async function serve(): Promise<{ close(): Promise<void> }> {

app.use('/', async (_req, res) => {
const { render } = await import(
path.resolve(rootDir, './dist/server/entry-server.js')
path.resolve(rootDir, './dist/server/entry-server.mjs')
)
const html = await render()
res.status(200).set({ 'Content-Type': 'text/html' }).end(html)
Expand Down
4 changes: 2 additions & 2 deletions playground/lib/__tests__/lib.spec.ts
Expand Up @@ -40,13 +40,13 @@ describe.runIf(isBuild)('build', () => {
'hello vite'
)
const code = fs.readFileSync(
path.join(testDir, 'dist/lib/dynamic-import-message.es.js'),
path.join(testDir, 'dist/lib/dynamic-import-message.es.mjs'),
'utf-8'
)
expect(code).not.toMatch('__vitePreload')

// Test that library chunks are hashed
expect(code).toMatch(/await import\("\.\/message.[a-z\d]{8}.js"\)/)
expect(code).toMatch(/await import\("\.\/message.[a-z\d]{8}.mjs"\)/)
})

test('@import hoist', async () => {
Expand Down
2 changes: 1 addition & 1 deletion playground/lib/vite.dyimport.config.js
Expand Up @@ -10,7 +10,7 @@ module.exports = {
entry: path.resolve(__dirname, 'src/main2.js'),
formats: ['es', 'iife'],
name: 'message',
fileName: (format) => `dynamic-import-message.${format}.js`
fileName: (format) => `dynamic-import-message.${format}.mjs`
},
outDir: 'dist/lib'
}
Expand Down