172 lines
5.1 KiB
JavaScript
Raw Normal View History

2017-01-17 13:40:59 +01:00
/**
* DEVELOPMENT WEBPACK CONFIGURATION
*/
const fs = require('fs');
2017-05-16 16:32:54 +02:00
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const webpack = require('webpack');
2017-01-17 13:40:59 +01:00
const argv = require('minimist')(process.argv.slice(2));
// PostCSS plugins
const cssnext = require('postcss-cssnext');
const postcssFocus = require('postcss-focus');
const postcssReporter = require('postcss-reporter');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;
const LodashModuleReplacementPlugin = require('lodash-webpack-plugin');
2017-01-17 13:40:59 +01:00
const plugins = [
new webpack.HotModuleReplacementPlugin(), // Tell webpack we want hot reloading
new webpack.optimize.CommonsChunkPlugin({
name: 'common',
minChunks: 2,
}),
new LodashModuleReplacementPlugin(),
new webpack.IgnorePlugin(/^\.\/locale$/, /moment$/),
new HtmlWebpackPlugin({
favicon: 'admin/src/favicon.ico',
inject: true, // Inject all files that are generated by webpack, e.g. bundle.js
templateContent: templateContent(), // eslint-disable-line no-use-before-define
chunksSortMode: 'auto',
}),
new BundleAnalyzerPlugin(),
];
const appPath = path.join(process.cwd(), 'admin', 'src', 'app.js')
const logger = require('../../server/logger');
const pkg = require(path.resolve(process.cwd(), 'package.json'));
const dllPlugin = pkg.dllPlugin;
2017-01-17 13:40:59 +01:00
const port = argv.port || process.env.PORT || 3000;
module.exports = require('./webpack.base.babel')({
// Add hot reloading in development
entry: {
main: [
`webpack-hot-middleware/client?path=http://localhost:${port}/__webpack_hmr`,
appPath,
]
},
2017-01-17 13:40:59 +01:00
// Don't use hashes in dev mode for better performance
output: {
filename: '[name].js',
chunkFilename: '[name].chunk.js',
publicPath: `http://127.0.0.1:${port}/`,
},
// Add development plugins
plugins: plugins, // eslint-disable-line no-use-before-define,
2017-01-17 13:40:59 +01:00
// Process the CSS with PostCSS
postcssPlugins: [
postcssFocus(), // Add a :focus to every :hover
cssnext({ // Allow future CSS features to be used, also auto-prefixes the CSS...
browsers: ['last 2 versions', 'IE > 10'], // ...based on this browser list
}),
postcssReporter({ // Posts messages from plugins to the terminal
clearMessages: true,
}),
],
2017-06-17 11:45:07 +02:00
// Tell babel that we want presets and to hot-reload
babelPresets: [
[
require.resolve('babel-preset-latest'),
{
2017-08-18 17:02:33 +02:00
es2015: {
modules: false,
2017-06-17 11:45:07 +02:00
},
},
],
require.resolve('babel-preset-react'),
require.resolve('babel-preset-stage-0'),
require.resolve('babel-preset-react-hmre'),
],
2017-01-17 13:40:59 +01:00
// Emit a source map for easier debugging
devtool: 'cheap-module-source-map',
2017-01-17 13:40:59 +01:00
});
/**
* Select which plugins to use to optimize the bundle's handling of
* third party dependencies.
*
* If there is a dllPlugin key on the project's package.json, the
* Webpack DLL Plugin will be used. Otherwise the CommonsChunkPlugin
* will be used.
*
*/
function dependencyHandlers() {
// Don't do anything during the DLL Build step
2017-08-18 17:51:10 +02:00
if (process.env.BUILDING_DLL) {
return [];
}
2017-01-17 13:40:59 +01:00
// If the package.json does not have a dllPlugin property, use the CommonsChunkPlugin
if (!dllPlugin) {
return [
new webpack.optimize.CommonsChunkPlugin({
name: 'commons',
2017-01-17 13:40:59 +01:00
children: true,
minChunks: 2,
async: true,
}),
];
}
2017-07-06 14:24:27 +02:00
const dllPath = dllPlugin.path;
2017-01-17 13:40:59 +01:00
/**
* If DLLs aren't explicitly defined, we assume all production dependencies listed in package.json
* Reminder: You need to exclude any server side dependencies by listing them in dllConfig.exclude
*/
if (!dllPlugin.dlls) {
2017-05-17 12:01:52 +02:00
const manifestPath = path.resolve(dllPath, 'strapiPluginDeps.json');
2017-01-17 13:40:59 +01:00
if (!fs.existsSync(manifestPath)) {
logger.error('The DLL manifest is missing. Please run `npm run build:dll`');
process.exit(0);
}
return [
new webpack.DllReferencePlugin({
context: process.cwd(),
manifest: require(manifestPath), // eslint-disable-line global-require
}),
];
}
// If DLLs are explicitly defined, we automatically create a DLLReferencePlugin for each of them.
const dllManifests = Object.keys(dllPlugin.dlls).map((name) => path.join(dllPath, `/${name}.json`));
return dllManifests.map((manifestPath) => {
if (!fs.existsSync(path)) {
if (!fs.existsSync(manifestPath)) {
logger.error(`The following Webpack DLL manifest is missing: ${path.basename(manifestPath)}`);
logger.error(`Expected to find it in ${dllPath}`);
logger.error('Please run: npm run build:dll');
process.exit(0);
}
}
return new webpack.DllReferencePlugin({
context: process.cwd(),
manifest: require(manifestPath), // eslint-disable-line global-require
});
});
}
/**
* We dynamically generate the HTML content in development so that the different
* DLL Javascript files are loaded in script tags and available to our application.
*/
function templateContent() {
const html = fs.readFileSync(
path.resolve(process.cwd(), 'admin/src/index.html')
).toString();
return html;
}