embark/lib/pipeline/webpackProcess.js

141 lines
4.4 KiB
JavaScript
Raw Normal View History

const constants = require('../constants');
const fs = require('../core/fs');
2018-07-27 21:33:50 +00:00
const ProcessWrapper = require('../core/processes/processWrapper');
const webpack = require('webpack');
const writeFile = require('util').promisify(require('fs').writeFile);
let webpackProcess;
2018-05-15 19:56:15 +00:00
class WebpackProcess extends ProcessWrapper {
constructor(options) {
super(options);
this.webpackConfigName = options.webpackConfigName;
if (!process.env.DAPP_PATH) {
process.env.DAPP_PATH = fs.dappPath();
}
if (!process.env.EMBARK_PATH) {
process.env.EMBARK_PATH = fs.embarkPath();
}
}
async build(assets, importsList, callback) {
try {
await this.webpackRun(assets, importsList, callback);
} catch (e) {
console.error(e.message);
callback(e);
// ?? should return e or e.message
}
}
async webpackRun(assets, importsList, callback) {
try {
await writeFile(
fs.dappPath('.embark/embark-aliases.json'),
JSON.stringify(importsList)
);
await writeFile(
fs.dappPath('.embark/embark-assets.json'),
JSON.stringify(assets)
);
} catch (e) {
console.error(e.message);
return callback(e);
// ?? should return e or e.message
}
const dappConfigPath = fs.dappPath('webpack.config.js');
const defaultConfigPath = fs.embarkPath('webpack.config.js');
let config, configPath;
try {
if (fs.existsSync(dappConfigPath)) {
configPath = dappConfigPath;
2018-08-16 22:02:06 +00:00
delete require.cache[configPath];
} else {
configPath = defaultConfigPath;
}
2018-08-16 22:02:06 +00:00
config = require(configPath);
// valid config types: https://webpack.js.org/configuration/configuration-types/
// + function that returns a config object
// + function that returns a promise for a config object
// + array of named config objects
// + config object
if (typeof config === 'function') {
2018-08-16 21:38:50 +00:00
config = await config(this.webpackConfigName);
} else if (Array.isArray(config)) {
2018-08-16 21:38:50 +00:00
config = config.filter(cfg => cfg.name === this.webpackConfigName);
if (!config.length) {
2018-08-16 21:38:50 +00:00
const errMsg = `no webpack config has the name '${this.webpackConfigName}'`;
console.error(errMsg);
return callback(errMsg);
// ?? should the message be wrapped in new Error()
}
if (config.length > 1) {
console.warn(
2018-08-16 21:38:50 +00:00
`detected ${config.length} webpack configs having the name '${this.webpackConfigName}', using the first one`
);
}
config = config[0];
} else {
2018-08-16 23:30:19 +00:00
// proceed with the value obtained from require(configPath)
}
} catch (e) {
console.error(`error while loading webpack config ${configPath}`);
console.error(e.message);
callback(e);
// ?? should return e or e.message
}
if (typeof config !== 'object' || config === null) {
const errMsg = 'bad webpack config, the resolved config was null or not an object';
console.error(errMsg);
return callback(errMsg);
// ?? should the message be wrapped in new Error()
}
webpack(config).run(async (err, stats) => {
if (err) {
console.error(err);
return callback(err);
}
try {
if (config.stats && config.stats !== 'none') {
2018-08-16 21:38:50 +00:00
this._log('info', 'writing file '+ ('.embark/stats.report').bold.dim);
await writeFile(
fs.dappPath('.embark/stats.report'),
stats.toString(config.stats)
);
2018-08-16 21:38:50 +00:00
this._log('info','writing file '+ ('.embark/stats.json').bold.dim);
await writeFile(
fs.dappPath('.embark/stats.json'),
JSON.stringify(stats.toJson(config.stats))
);
}
} catch (e) {
console.error(e.message);
return callback(err);
}
if (config.stats && stats.hasErrors()) {
const errors = stats.toJson(config.stats).errors.join('\n');
console.error(errors);
return callback(errors);
}
callback();
});
}
}
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.assets, msg.importsList, (err) => {
process.send({result: constants.pipeline.built, error: err});
});
}
});