2018-05-10 14:10:09 +00:00
|
|
|
const async = require('async');
|
|
|
|
const webpack = require('webpack');
|
|
|
|
const utils = require('../utils/utils');
|
|
|
|
const fs = require('../core/fs');
|
|
|
|
const constants = require('../constants');
|
2018-05-10 16:22:58 +00:00
|
|
|
const HardSourceWebpackPlugin = require('hard-source-webpack-plugin');
|
2018-05-15 21:08:08 +00:00
|
|
|
const ProcessWrapper = require('../process/processWrapper');
|
2018-07-18 03:26:56 +00:00
|
|
|
const path = require('path');
|
2018-05-10 14:10:09 +00:00
|
|
|
|
|
|
|
let webpackProcess;
|
|
|
|
|
2018-05-15 19:56:15 +00:00
|
|
|
class WebpackProcess extends ProcessWrapper {
|
2018-05-10 14:10:09 +00:00
|
|
|
build(file, importsList, callback) {
|
|
|
|
const self = this;
|
|
|
|
let realCwd;
|
|
|
|
|
|
|
|
async.waterfall([
|
|
|
|
function changeCwd(next) {
|
|
|
|
realCwd = utils.pwd();
|
|
|
|
process.chdir(fs.embarkPath(''));
|
|
|
|
next();
|
|
|
|
},
|
|
|
|
|
|
|
|
function runWebpack(next) {
|
2018-07-18 03:26:56 +00:00
|
|
|
self.webpackRun(file.filename, {}, true, importsList, true, realCwd, next);
|
2018-05-10 14:10:09 +00:00
|
|
|
},
|
|
|
|
|
|
|
|
function changeCwdBack(next) {
|
|
|
|
process.chdir(realCwd);
|
|
|
|
next();
|
|
|
|
}
|
|
|
|
], (err) => {
|
|
|
|
process.chdir(realCwd);
|
|
|
|
callback(err);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
2018-07-18 03:26:56 +00:00
|
|
|
webpackRun(filename, options, includeModules, importsList, detectErrors, realCwd, callback) {
|
2018-07-20 01:52:18 +00:00
|
|
|
const self = this;
|
2018-05-10 14:10:09 +00:00
|
|
|
let defaultOptions = {
|
2018-07-20 01:52:18 +00:00
|
|
|
mode: self.env === 'development' ? 'none' : 'production',
|
2018-07-20 16:02:59 +00:00
|
|
|
// devtool: self.env === 'development' ? 'source-map' : false,
|
|
|
|
// pipeline would need to copy .map files to dist/ target dir
|
2018-07-20 16:52:24 +00:00
|
|
|
// note: generating full source maps ('source-map') roughly doubles build time
|
2018-05-10 14:10:09 +00:00
|
|
|
entry: fs.dappPath(filename),
|
|
|
|
output: {
|
2018-07-20 01:52:18 +00:00
|
|
|
globalObject: 'typeof self !== \'undefined\' ? self : this',
|
|
|
|
libraryExport: 'default',
|
2018-05-10 14:10:09 +00:00
|
|
|
libraryTarget: 'umd',
|
|
|
|
path: fs.dappPath('.embark'),
|
2018-07-20 01:52:18 +00:00
|
|
|
filename: filename,
|
|
|
|
umdNamedDefine: true
|
2018-05-10 14:10:09 +00:00
|
|
|
},
|
2018-07-20 21:50:47 +00:00
|
|
|
// profile: true,
|
|
|
|
// stats: 'verbose',
|
|
|
|
// note: generating and writing to disk verbose stats increases build time
|
2018-05-10 14:10:09 +00:00
|
|
|
resolve: {
|
|
|
|
alias: importsList,
|
|
|
|
modules: [
|
|
|
|
fs.embarkPath('node_modules'),
|
|
|
|
fs.dappPath('node_modules')
|
|
|
|
]
|
|
|
|
},
|
2018-07-20 01:47:59 +00:00
|
|
|
plugins: [
|
|
|
|
new HardSourceWebpackPlugin({
|
|
|
|
cacheDirectory: fs.dappPath('node_modules/.cache/hard-source'),
|
2018-07-20 21:50:47 +00:00
|
|
|
// ufglify (wp mode: production) will still save its cache in embark's node_modules/.cache/
|
2018-07-20 01:47:59 +00:00
|
|
|
environmentHash: {
|
|
|
|
root: fs.dappPath()
|
|
|
|
}
|
|
|
|
}),
|
2018-07-20 02:00:27 +00:00
|
|
|
new HardSourceWebpackPlugin.ExcludeModulePlugin(
|
|
|
|
[{test: /app[\\/]|contracts[\\/]/}]
|
|
|
|
)
|
2018-07-20 01:47:59 +00:00
|
|
|
]
|
2018-05-10 14:10:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
let webpackOptions = utils.recursiveMerge(defaultOptions, options);
|
|
|
|
|
|
|
|
if (includeModules) {
|
|
|
|
webpackOptions.module = {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.css$/,
|
|
|
|
use: [{loader: "style-loader"}, {loader: "css-loader"}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.scss$/,
|
|
|
|
use: [{loader: "style-loader"}, {loader: "css-loader"}]
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.(png|woff|woff2|eot|ttf|svg)$/,
|
|
|
|
loader: 'url-loader?limit=100000'
|
|
|
|
},
|
|
|
|
{
|
|
|
|
test: /\.js$/,
|
|
|
|
loader: "babel-loader",
|
|
|
|
exclude: /(node_modules|bower_components)/,
|
|
|
|
options: {
|
2018-07-20 01:52:18 +00:00
|
|
|
presets: [
|
|
|
|
[
|
|
|
|
"@babel/preset-env", {
|
|
|
|
modules: false,
|
|
|
|
targets: {
|
|
|
|
browsers: ["last 1 version", "not dead", "> 0.2%"]
|
|
|
|
}
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"@babel/preset-react"
|
|
|
|
].map(pkg => {
|
|
|
|
if (Array.isArray(pkg)) {
|
|
|
|
let _pkg = pkg[0];
|
|
|
|
pkg[0] = require.resolve(_pkg);
|
|
|
|
return pkg;
|
|
|
|
} else {
|
|
|
|
return require.resolve(pkg);
|
|
|
|
}
|
|
|
|
}),
|
|
|
|
plugins: [
|
|
|
|
"@babel/plugin-transform-runtime",
|
|
|
|
"babel-plugin-webpack-aliases"
|
|
|
|
].map(require.resolve),
|
2018-05-10 14:10:09 +00:00
|
|
|
compact: false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|
|
|
|
|
2018-07-20 01:52:18 +00:00
|
|
|
let dappBabelrc = path.join(realCwd, '.babelrc');
|
|
|
|
if (fs.existsSync(dappBabelrc)) {
|
|
|
|
webpackOptions.module.rules[3].options.extends = dappBabelrc;
|
2018-05-10 14:10:09 +00:00
|
|
|
}
|
2018-07-20 01:52:18 +00:00
|
|
|
}
|
2018-05-10 14:10:09 +00:00
|
|
|
|
2018-07-20 01:51:46 +00:00
|
|
|
webpack(webpackOptions).run((err, stats) => {
|
|
|
|
async.waterfall([
|
|
|
|
function checkStatsError(next) {
|
|
|
|
if (err) {
|
|
|
|
console.error(err);
|
|
|
|
return next(err);
|
|
|
|
}
|
|
|
|
if (!detectErrors) {
|
|
|
|
return next();
|
|
|
|
}
|
|
|
|
if (stats.hasErrors()) {
|
|
|
|
return next(
|
|
|
|
stats.toJson(webpackOptions.stats).errors.join("\n")
|
|
|
|
);
|
|
|
|
}
|
|
|
|
next();
|
2018-07-20 21:50:47 +00:00
|
|
|
}//,
|
|
|
|
// function writeStatsReport(next) {
|
|
|
|
// if (detectErrors) {
|
|
|
|
// self._log('info', 'writing file '+ ('.embark/stats.report').bold.dim);
|
|
|
|
// }
|
|
|
|
// fs.writeFile(
|
|
|
|
// path.join(fs.dappPath('.embark'), 'stats.report'),
|
|
|
|
// stats.toString(webpackOptions.stats),
|
|
|
|
// next
|
|
|
|
// );
|
|
|
|
// },
|
|
|
|
// function writeStatsJSON(next) {
|
|
|
|
// if (detectErrors) {
|
|
|
|
// self._log('info','writing file '+ ('.embark/stats.json').bold.dim);
|
|
|
|
// }
|
|
|
|
// fs.writeFile(
|
|
|
|
// path.join(fs.dappPath('.embark'), 'stats.json'),
|
|
|
|
// JSON.stringify(stats.toJson(webpackOptions.stats)),
|
|
|
|
// next
|
|
|
|
// );
|
|
|
|
// }
|
2018-07-20 23:33:40 +00:00
|
|
|
// note: to visualize the stats info in a browser, do...
|
|
|
|
// `npx webpack-bundle-analyzer <dapp_dir>/.embark/stats.json`
|
2018-07-20 01:51:46 +00:00
|
|
|
], (err) => {
|
|
|
|
callback(err);
|
|
|
|
});
|
2018-05-10 14:10:09 +00:00
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
process.on('message', (msg) => {
|
|
|
|
if (msg.action === constants.pipeline.init) {
|
|
|
|
webpackProcess = new WebpackProcess(msg.options);
|
|
|
|
return process.send({result: constants.pipeline.initiated});
|
|
|
|
}
|
|
|
|
|
|
|
|
if (msg.action === constants.pipeline.build) {
|
|
|
|
return webpackProcess.build(msg.file, msg.importsList, (err) => {
|
|
|
|
process.send({result: constants.pipeline.built, error: err});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
});
|