mirror of
https://github.com/nuxt/nuxt.git
synced 2025-02-23 17:10:07 +00:00
241 lines
6.6 KiB
TypeScript
241 lines
6.6 KiB
TypeScript
|
import { resolve, normalize } from 'path'
|
||
|
import TimeFixPlugin from 'time-fix-plugin'
|
||
|
import WebpackBar from 'webpackbar'
|
||
|
import stdEnv from 'std-env'
|
||
|
import { DefinePlugin, Configuration } from 'webpack'
|
||
|
import FriendlyErrorsWebpackPlugin from '@nuxt/friendly-errors-webpack-plugin'
|
||
|
import { isUrl, urlJoin, TARGETS } from 'src/utils'
|
||
|
import escapeRegExp from 'lodash/escapeRegExp'
|
||
|
import WarningIgnorePlugin from '../plugins/warning-ignore'
|
||
|
import { WebpackConfigContext, applyPresets, fileName } from '../utils/config'
|
||
|
|
||
|
export function base (ctx: WebpackConfigContext) {
|
||
|
applyPresets(ctx, [
|
||
|
baseAlias,
|
||
|
baseConfig,
|
||
|
basePlugins,
|
||
|
baseResolve
|
||
|
])
|
||
|
}
|
||
|
|
||
|
function baseConfig (ctx: WebpackConfigContext) {
|
||
|
const { options } = ctx
|
||
|
|
||
|
ctx.config = {
|
||
|
name: ctx.name,
|
||
|
entry: { app: [resolve(options.buildDir, `entry.${ctx.name}.ts`)] },
|
||
|
module: { rules: [] },
|
||
|
plugins: [],
|
||
|
externals: [],
|
||
|
optimization: {
|
||
|
...options.build.optimization as any,
|
||
|
minimizer: []
|
||
|
},
|
||
|
mode: ctx.isDev ? 'development' : 'production',
|
||
|
cache: getCache(ctx),
|
||
|
output: getOutput(ctx),
|
||
|
...ctx.config
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function basePlugins (ctx: WebpackConfigContext) {
|
||
|
const { config, options, nuxt } = ctx
|
||
|
|
||
|
// Add timefix-plugin before others plugins
|
||
|
if (options.dev) {
|
||
|
config.plugins.push(new TimeFixPlugin())
|
||
|
}
|
||
|
|
||
|
// User plugins
|
||
|
config.plugins.push(...(options.build.plugins || []))
|
||
|
|
||
|
// Ignore empty warnings
|
||
|
config.plugins.push(new WarningIgnorePlugin(getWarningIgnoreFilter(ctx)))
|
||
|
|
||
|
// Provide env via DefinePlugin
|
||
|
config.plugins.push(new DefinePlugin(getEnv(ctx)))
|
||
|
|
||
|
// Friendly errors
|
||
|
if (
|
||
|
ctx.isServer ||
|
||
|
(ctx.isDev && !options.build.quiet && options.build.friendlyErrors)
|
||
|
) {
|
||
|
ctx.config.plugins.push(
|
||
|
new FriendlyErrorsWebpackPlugin({
|
||
|
clearConsole: false,
|
||
|
reporter: 'consola',
|
||
|
logLevel: 'WARNING'
|
||
|
})
|
||
|
)
|
||
|
}
|
||
|
|
||
|
// Webpackbar
|
||
|
const colors = {
|
||
|
client: 'green',
|
||
|
server: 'orange',
|
||
|
modern: 'blue'
|
||
|
}
|
||
|
config.plugins.push(new WebpackBar({
|
||
|
name: ctx.name,
|
||
|
color: colors[ctx.name],
|
||
|
reporters: [
|
||
|
'basic',
|
||
|
'fancy',
|
||
|
'profile',
|
||
|
'stats'
|
||
|
],
|
||
|
basic: !options.build.quiet && stdEnv.minimalCLI,
|
||
|
fancy: !options.build.quiet && !stdEnv.minimalCLI,
|
||
|
profile: !options.build.quiet && options.build.profile,
|
||
|
stats: !options.build.quiet && !options.dev && options.build.stats,
|
||
|
reporter: {
|
||
|
change: (_, { shortPath }) => {
|
||
|
if (!ctx.isServer) {
|
||
|
nuxt.callHook('bundler:change', shortPath)
|
||
|
}
|
||
|
},
|
||
|
done: (stats) => {
|
||
|
if (stats.hasErrors) {
|
||
|
nuxt.callHook('bundler:error')
|
||
|
}
|
||
|
},
|
||
|
allDone: () => {
|
||
|
nuxt.callHook('bundler:done')
|
||
|
},
|
||
|
progress ({ statesArray }) {
|
||
|
nuxt.callHook('bundler:progress', statesArray)
|
||
|
}
|
||
|
}
|
||
|
}))
|
||
|
}
|
||
|
|
||
|
function baseAlias (ctx: WebpackConfigContext) {
|
||
|
const { options, isServer } = ctx
|
||
|
|
||
|
ctx.alias = {
|
||
|
app: options.appDir,
|
||
|
'nuxt-build': options.buildDir,
|
||
|
'vue-meta': require.resolve(`vue-meta${isServer ? '' : '/dist/vue-meta.esm.browser.js'}`),
|
||
|
...options.alias,
|
||
|
...ctx.alias
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function baseResolve (ctx: WebpackConfigContext) {
|
||
|
const { options, config } = ctx
|
||
|
|
||
|
// Prioritize nested node_modules in webpack search path (#2558)
|
||
|
// TODO: this might be refactored as default modulesDir?
|
||
|
const webpackModulesDir = ['node_modules'].concat(options.modulesDir)
|
||
|
|
||
|
config.resolve = {
|
||
|
extensions: ['.wasm', '.mjs', '.js', '.ts', '.json', '.vue', '.jsx', '.tsx'],
|
||
|
alias: ctx.alias,
|
||
|
modules: webpackModulesDir,
|
||
|
...config.resolve
|
||
|
}
|
||
|
|
||
|
config.resolveLoader = {
|
||
|
modules: webpackModulesDir,
|
||
|
...config.resolveLoader
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export function baseTranspile (ctx: WebpackConfigContext) {
|
||
|
const { options } = ctx
|
||
|
|
||
|
const transpile = [
|
||
|
/\.vue\.js/i, // include SFCs in node_modules
|
||
|
/consola\/src/
|
||
|
]
|
||
|
|
||
|
for (let pattern of options.build.transpile) {
|
||
|
if (typeof pattern === 'function') {
|
||
|
pattern = pattern(ctx)
|
||
|
}
|
||
|
if (typeof pattern === 'string') {
|
||
|
const posixModule = pattern.replace(/\\/g, '/')
|
||
|
// TODO: should only do for clientside? (hint: pathNormalize)
|
||
|
transpile.push(new RegExp(escapeRegExp(normalize(posixModule))))
|
||
|
} else if (pattern instanceof RegExp) {
|
||
|
transpile.push(pattern)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
// TODO: unique
|
||
|
ctx.transpile = [...transpile, ...ctx.transpile]
|
||
|
}
|
||
|
|
||
|
function getCache (ctx: WebpackConfigContext): Configuration['cache'] {
|
||
|
const { options } = ctx
|
||
|
|
||
|
if (!options.build.cache) {
|
||
|
return false
|
||
|
}
|
||
|
|
||
|
return {
|
||
|
type: 'filesystem',
|
||
|
cacheDirectory: resolve('node_modules/.cache/@nuxt/webpack/'),
|
||
|
buildDependencies: {
|
||
|
config: [...options._nuxtConfigFiles]
|
||
|
},
|
||
|
...(options.build.cache as any),
|
||
|
name
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function getOutput (ctx: WebpackConfigContext): Configuration['output'] {
|
||
|
const { options } = ctx
|
||
|
|
||
|
return {
|
||
|
path: resolve(options.buildDir, 'dist', ctx.isServer ? 'server' : 'client'),
|
||
|
filename: fileName(ctx, 'app'),
|
||
|
chunkFilename: fileName(ctx, 'chunk'),
|
||
|
publicPath: isUrl(options.build.publicPath) ? options.build.publicPath
|
||
|
: urlJoin(options.router.base, options.build.publicPath)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
function getWarningIgnoreFilter (ctx: WebpackConfigContext) {
|
||
|
const { options } = ctx
|
||
|
|
||
|
const filters = [
|
||
|
// Hide warnings about plugins without a default export (#1179)
|
||
|
warn => warn.name === 'ModuleDependencyWarning' &&
|
||
|
warn.message.includes('export \'default\'') &&
|
||
|
warn.message.includes('nuxt_plugin_'),
|
||
|
...(options.build.warningIgnoreFilters || [])
|
||
|
]
|
||
|
|
||
|
return warn => !filters.some(ignoreFilter => ignoreFilter(warn))
|
||
|
}
|
||
|
|
||
|
function getEnv (ctx: WebpackConfigContext) {
|
||
|
const { options } = ctx
|
||
|
|
||
|
const _env = {
|
||
|
'process.env.NODE_ENV': JSON.stringify(ctx.config.mode),
|
||
|
'process.mode': JSON.stringify(ctx.config.mode),
|
||
|
'process.dev': options.dev,
|
||
|
'process.static': options.target === TARGETS.static,
|
||
|
'process.target': JSON.stringify(options.target),
|
||
|
'process.env.VUE_ENV': JSON.stringify(ctx.name),
|
||
|
'process.browser': ctx.isClient,
|
||
|
'process.client': ctx.isClient,
|
||
|
'process.server': ctx.isServer,
|
||
|
'process.modern': ctx.isModern
|
||
|
}
|
||
|
|
||
|
if (options.build.aggressiveCodeRemoval) {
|
||
|
_env['typeof process'] = JSON.stringify(ctx.isServer ? 'object' : 'undefined')
|
||
|
_env['typeof window'] = _env['typeof document'] = JSON.stringify(!ctx.isServer ? 'object' : 'undefined')
|
||
|
}
|
||
|
|
||
|
Object.entries(options.env).forEach(([key, value]) => {
|
||
|
const isNative = ['boolean', 'number'].includes(typeof value)
|
||
|
_env['process.env.' + key] = isNative ? value : JSON.stringify(value)
|
||
|
})
|
||
|
|
||
|
return _env
|
||
|
}
|