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

perf: lazy load rollup during dev #15621

Merged
merged 7 commits into from Jan 23, 2024
Merged
Show file tree
Hide file tree
Changes from 3 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
3 changes: 2 additions & 1 deletion packages/vite/src/node/config.ts
Expand Up @@ -8,7 +8,6 @@ import { createRequire } from 'node:module'
import colors from 'picocolors'
import type { Alias, AliasOptions } from 'dep-types/alias'
import aliasPlugin from '@rollup/plugin-alias'
import { build } from 'esbuild'
import type { RollupOptions } from 'rollup'
import type { HookHandler, Plugin, PluginWithRequiredHook } from './plugin'
import type {
Expand Down Expand Up @@ -1009,6 +1008,8 @@ async function bundleConfigFile(
const dirnameVarName = '__vite_injected_original_dirname'
const filenameVarName = '__vite_injected_original_filename'
const importMetaUrlVarName = '__vite_injected_original_import_meta_url'

const { build } = await import('esbuild')
const result = await build({
absWorkingDir: process.cwd(),
entryPoints: [fileName],
Expand Down
3 changes: 2 additions & 1 deletion packages/vite/src/node/optimizer/index.ts
Expand Up @@ -5,7 +5,6 @@ import { promisify } from 'node:util'
import { performance } from 'node:perf_hooks'
import colors from 'picocolors'
import type { BuildContext, BuildOptions as EsbuildBuildOptions } from 'esbuild'
import esbuild, { build } from 'esbuild'
import { init, parse } from 'es-module-lexer'
import glob from 'fast-glob'
import { getDepOptimizationConfig } from '../config'
Expand Down Expand Up @@ -759,6 +758,7 @@ async function prepareEsbuildOptimizerRun(
}
plugins.push(esbuildDepPlugin(flatIdDeps, external, config, ssr))

const esbuild = (await import('esbuild')).default
const context = await esbuild.context({
absWorkingDir: process.cwd(),
entryPoints: Object.keys(flatIdDeps),
Expand Down Expand Up @@ -1058,6 +1058,7 @@ export async function extractExportsData(
// For custom supported extensions, build the entry file to transform it into JS,
// and then parse with es-module-lexer. Note that the `bundle` option is not `true`,
// so only the entry file is being transformed.
const { build } = await import('esbuild')
const result = await build({
...esbuildOptions,
entryPoints: [filePath],
Expand Down
4 changes: 3 additions & 1 deletion packages/vite/src/node/optimizer/scan.ts
Expand Up @@ -10,7 +10,6 @@ import type {
OnLoadResult,
Plugin,
} from 'esbuild'
import esbuild, { formatMessages, transform } from 'esbuild'
import colors from 'picocolors'
import type { ResolvedConfig } from '..'
import {
Expand Down Expand Up @@ -135,6 +134,7 @@ export function scanImports(config: ResolvedConfig): {

`)
if (e.errors) {
const { formatMessages } = await import('esbuild')
const msgs = await formatMessages(e.errors, {
kind: 'error',
color: true,
Expand Down Expand Up @@ -216,6 +216,7 @@ async function prepareEsbuildScanner(
const { plugins = [], ...esbuildOptions } =
config.optimizeDeps?.esbuildOptions ?? {}

const esbuild = (await import('esbuild')).default
return await esbuild.context({
absWorkingDir: process.cwd(),
write: false,
Expand Down Expand Up @@ -315,6 +316,7 @@ function esbuildScanPlugin(
let transpiledContents
// transpile because `transformGlobImport` only expects js
if (loader !== 'js') {
const { transform } = await import('esbuild')
transpiledContents = (await transform(contents, { loader })).code
} else {
transpiledContents = contents
Expand Down
3 changes: 2 additions & 1 deletion packages/vite/src/node/plugins/css.ts
Expand Up @@ -22,7 +22,6 @@ import type Less from 'less'
import type { Alias } from 'dep-types/alias'
import type { LightningCSSOptions } from 'dep-types/lightningcss'
import type { TransformOptions } from 'esbuild'
import { formatMessages, transform } from 'esbuild'
import type { RawSourceMap } from '@ampproject/remapping'
import { getCodeWithSourcemap, injectSourcesContent } from '../server/sourcemap'
import type { ModuleNode } from '../server/moduleGraph'
Expand Down Expand Up @@ -1723,6 +1722,8 @@ async function minifyCSS(
// LightningCSS output does not return a linebreak at the end
return code.toString() + (inlined ? '' : '\n')
}

const { formatMessages, transform } = await import('esbuild')
try {
const { code, warnings } = await transform(css, {
loader: 'css',
Expand Down
2 changes: 1 addition & 1 deletion packages/vite/src/node/plugins/define.ts
@@ -1,4 +1,3 @@
import { transform } from 'esbuild'
import type { ResolvedConfig } from '../config'
import type { Plugin } from '../plugin'
import { escapeRegex, getHash } from '../utils'
Expand Down Expand Up @@ -148,6 +147,7 @@ export async function replaceDefine(

const esbuildOptions = config.esbuild || {}

const { transform } = await import('esbuild')
const result = await transform(code, {
loader: 'js',
charset: esbuildOptions.charset ?? 'utf8',
Expand Down
2 changes: 1 addition & 1 deletion packages/vite/src/node/plugins/esbuild.ts
Expand Up @@ -6,7 +6,6 @@ import type {
TransformOptions,
TransformResult,
} from 'esbuild'
import { transform } from 'esbuild'
import type { RawSourceMap } from '@ampproject/remapping'
import type { InternalModuleFormat, SourceMap } from 'rollup'
import type { TSConfckParseResult } from 'tsconfck'
Expand Down Expand Up @@ -173,6 +172,7 @@ export async function transformWithEsbuild(
delete resolvedOptions.jsxInject

try {
const { transform } = await import('esbuild')
sapphi-red marked this conversation as resolved.
Show resolved Hide resolved
const result = await transform(code, resolvedOptions)
let map: SourceMap
if (inMap && resolvedOptions.sourcemap) {
Expand Down
11 changes: 8 additions & 3 deletions packages/vite/src/node/publicUtils.ts
Expand Up @@ -4,14 +4,19 @@
* Please control the side-effects by checking the ./dist/node-cjs/publicUtils.cjs bundle
*/
export { VERSION as version } from './constants'
export { version as esbuildVersion } from 'esbuild'
bluwy marked this conversation as resolved.
Show resolved Hide resolved
export { VERSION as rollupVersion } from 'rollup'
export {
splitVendorChunkPlugin,
splitVendorChunk,
isCSSRequest,
} from './plugins/splitVendorChunk'
export { normalizePath, mergeConfig, mergeAlias, createFilter } from './utils'
export {
normalizePath,
mergeConfig,
mergeAlias,
createFilter,
esbuildVersion,
rollupVersion,
} from './utils'
export { send } from './server/send'
export { createLogger } from './logger'
export { searchForWorkspaceRoot } from './server/searchRoot'
Expand Down
2 changes: 1 addition & 1 deletion packages/vite/src/node/server/pluginContainer.ts
Expand Up @@ -32,7 +32,6 @@ SOFTWARE.
import fs from 'node:fs'
import { join } from 'node:path'
import { performance } from 'node:perf_hooks'
import { VERSION as rollupVersion } from 'rollup'
import { parseAst as rollupParseAst } from 'rollup/parseAst'
import type {
AsyncPluginHooks,
Expand Down Expand Up @@ -74,6 +73,7 @@ import {
normalizePath,
numberToPos,
prettifyUrl,
rollupVersion,
timeFrom,
unwrapId,
} from '../utils'
Expand Down
11 changes: 11 additions & 0 deletions packages/vite/src/node/utils.ts
Expand Up @@ -162,6 +162,17 @@ export const deepImportRE = /^([^@][^/]*)\/|^(@[^/]+\/[^/]+)\//
// TODO: use import()
const _require = createRequire(import.meta.url)

export function resolveDependencyVersion(
dep: string,
pkgRelativePath = '../../package.json',
): string {
const pkgPath = path.resolve(_require.resolve(dep), pkgRelativePath)
sheremet-va marked this conversation as resolved.
Show resolved Hide resolved
return JSON.parse(fs.readFileSync(pkgPath, 'utf-8')).version
}

export const esbuildVersion = resolveDependencyVersion('rollup')
export const rollupVersion = resolveDependencyVersion('esbuild')

// set in bin/vite.js
const filter = process.env.VITE_DEBUG_FILTER

Expand Down