1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/server/build/webpack.js

194 lines
5.3 KiB
JavaScript
Raw Normal View History

2016-10-15 16:17:27 +00:00
import { resolve, join } from 'path'
2016-10-14 15:05:08 +00:00
import webpack from 'webpack'
import glob from 'glob-promise'
2016-10-15 19:49:42 +00:00
import WriteFilePlugin from 'write-file-webpack-plugin'
2016-10-23 16:42:13 +00:00
import UnlinkFilePlugin from './plugins/unlink-file-plugin'
import WatchPagesPlugin from './plugins/watch-pages-plugin'
import WatchRemoveEventPlugin from './plugins/watch-remove-event-plugin'
import DynamicEntryPlugin from './plugins/dynamic-entry-plugin'
import DetachPlugin from './plugins/detach-plugin'
2016-11-16 02:46:58 +00:00
import FriendlyErrorsWebpackPlugin from 'friendly-errors-webpack-plugin'
2016-10-14 15:05:08 +00:00
export default async function createCompiler (dir, { hotReload = false, dev = false } = {}) {
2016-10-15 16:17:27 +00:00
dir = resolve(dir)
const pages = await glob('pages/**/*.js', { cwd: dir })
2016-10-14 15:05:08 +00:00
const entry = {}
const defaultEntries = hotReload ? ['next/dist/client/webpack-hot-middleware-client'] : []
2016-10-14 15:05:08 +00:00
for (const p of pages) {
2016-10-17 03:55:09 +00:00
entry[join('bundles', p)] = defaultEntries.concat(['./' + p])
2016-10-14 15:05:08 +00:00
}
2016-10-19 12:58:08 +00:00
const nextPagesDir = join(__dirname, '..', '..', 'pages')
2016-10-19 12:41:45 +00:00
2016-10-17 03:55:09 +00:00
const errorEntry = join('bundles', 'pages', '_error.js')
2016-10-19 12:58:08 +00:00
const defaultErrorPath = join(nextPagesDir, '_error.js')
if (!entry[errorEntry]) {
entry[errorEntry] = defaultEntries.concat([defaultErrorPath])
}
2016-10-14 15:05:08 +00:00
2016-10-19 12:41:45 +00:00
const errorDebugEntry = join('bundles', 'pages', '_error-debug.js')
2016-10-19 12:58:08 +00:00
const errorDebugPath = join(nextPagesDir, '_error-debug.js')
2016-10-19 12:41:45 +00:00
entry[errorDebugEntry] = errorDebugPath
2016-10-19 12:58:08 +00:00
const nodeModulesDir = join(__dirname, '..', '..', '..', 'node_modules')
2016-10-14 15:05:08 +00:00
2016-10-16 02:49:09 +00:00
const plugins = [
2016-10-18 14:14:00 +00:00
new WriteFilePlugin({
exitOnErrors: false,
2016-10-23 16:42:13 +00:00
log: false,
// required not to cache removed files
useHashIndex: false
}),
new webpack.optimize.CommonsChunkPlugin({
name: 'commons',
filename: 'commons.js'
2016-10-23 16:42:13 +00:00
})
]
if (!dev) {
plugins.push(
new webpack.DefinePlugin({
'process.env.NODE_ENV': JSON.stringify('production')
}),
new webpack.optimize.UglifyJsPlugin({
compress: { warnings: false },
sourceMap: false
})
)
}
if (hotReload) {
plugins.push(
new webpack.optimize.OccurrenceOrderPlugin(),
new webpack.HotModuleReplacementPlugin(),
new webpack.NoErrorsPlugin(),
new DetachPlugin(),
new DynamicEntryPlugin(),
new UnlinkFilePlugin(),
new WatchRemoveEventPlugin(),
2016-12-02 01:21:21 +00:00
new WatchPagesPlugin(dir),
new FriendlyErrorsWebpackPlugin()
)
}
2016-10-15 19:49:42 +00:00
2016-10-14 15:05:08 +00:00
const babelRuntimePath = require.resolve('babel-runtime/package')
.replace(/[\\/]package\.json$/, '')
2016-10-14 15:05:08 +00:00
const loaders = (hotReload ? [{
2016-10-15 16:17:27 +00:00
test: /\.js$/,
loader: 'hot-self-accept-loader',
include: [
join(dir, 'pages'),
nextPagesDir
]
}] : [])
.concat([{
test: /\.json$/,
loader: 'json-loader'
}, {
test: /\.(js|json)$/,
2016-10-15 16:17:27 +00:00
loader: 'emit-file-loader',
2016-10-19 12:41:45 +00:00
include: [dir, nextPagesDir],
2016-10-25 09:11:39 +00:00
exclude (str) {
return /node_modules/.test(str) && str.indexOf(nextPagesDir) !== 0
},
2016-10-15 16:17:27 +00:00
query: {
2016-10-17 03:55:09 +00:00
name: 'dist/[path][name].[ext]'
2016-10-15 16:17:27 +00:00
}
}, {
loader: 'babel',
include: nextPagesDir,
query: {
plugins: [
[
require.resolve('babel-plugin-module-resolver'),
{
alias: {
'ansi-html': require.resolve('ansi-html')
}
}
]
]
}
}, {
2016-10-14 15:05:08 +00:00
test: /\.js$/,
loader: 'babel',
2016-10-19 12:41:45 +00:00
include: [dir, nextPagesDir],
2016-10-25 09:11:39 +00:00
exclude (str) {
return /node_modules/.test(str) && str.indexOf(nextPagesDir) !== 0 && str.indexOf(dir) !== 0
2016-10-25 09:11:39 +00:00
},
2016-10-14 15:05:08 +00:00
query: {
presets: ['es2015', 'react'],
plugins: [
require.resolve('babel-plugin-react-require'),
2016-10-28 15:50:31 +00:00
require.resolve('babel-plugin-transform-async-to-generator'),
require.resolve('babel-plugin-transform-object-rest-spread'),
require.resolve('babel-plugin-transform-class-properties'),
require.resolve('babel-plugin-transform-runtime'),
2016-10-14 15:05:08 +00:00
[
2016-10-28 15:50:31 +00:00
require.resolve('babel-plugin-module-resolver'),
{
alias: {
'babel-runtime': babelRuntimePath,
react: require.resolve('react'),
'next/link': require.resolve('../../lib/link'),
'next/css': require.resolve('../../lib/css'),
'next/head': require.resolve('../../lib/head')
}
}
2016-10-14 15:05:08 +00:00
]
]
}
2016-10-19 12:41:45 +00:00
}])
const interpolateNames = new Map([
[defaultErrorPath, 'dist/pages/_error.js'],
[errorDebugPath, 'dist/pages/_error-debug.js']
])
2016-10-14 15:05:08 +00:00
return webpack({
context: dir,
entry,
output: {
2016-10-19 12:58:08 +00:00
path: join(dir, '.next'),
2016-10-14 15:05:08 +00:00
filename: '[name]',
libraryTarget: 'commonjs2',
publicPath: hotReload ? '/_webpack/' : null
2016-10-14 15:05:08 +00:00
},
externals: [
'react',
'react-dom',
{
[require.resolve('react')]: 'react',
[require.resolve('../../lib/link')]: 'next/link',
[require.resolve('../../lib/css')]: 'next/css',
[require.resolve('../../lib/head')]: 'next/head'
}
],
resolve: {
root: [
nodeModulesDir,
2016-10-19 12:58:08 +00:00
join(dir, 'node_modules')
].concat(
(process.env.NODE_PATH || '')
.split(process.platform === 'win32' ? ';' : ':')
)
2016-10-14 15:05:08 +00:00
},
resolveLoader: {
root: [
nodeModulesDir,
2016-10-19 12:58:08 +00:00
join(__dirname, 'loaders')
2016-10-14 15:05:08 +00:00
]
},
2016-10-15 19:49:42 +00:00
plugins,
2016-10-14 15:05:08 +00:00
module: {
loaders
2016-10-16 04:01:17 +00:00
},
customInterpolateName: function (url, name, opts) {
2016-10-19 12:41:45 +00:00
return interpolateNames.get(this.resourcePath) || url
2016-10-14 15:05:08 +00:00
}
})
}