mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-01-12 22:46:30 +08:00
121 lines
3.7 KiB
JavaScript
121 lines
3.7 KiB
JavaScript
// @remove-on-eject-begin
|
|
/**
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
* All rights reserved.
|
|
*
|
|
* This source code is licensed under the BSD-style license found in the
|
|
* LICENSE file in the root directory of this source tree. An additional grant
|
|
* of patent rights can be found in the PATENTS file in the same directory.
|
|
*/
|
|
// @remove-on-eject-end
|
|
'use strict';
|
|
|
|
const chalk = require('chalk');
|
|
const webpack = require('webpack');
|
|
const clearConsole = require('react-dev-utils/clearConsole');
|
|
const formatWebpackMessages = require('react-dev-utils/formatWebpackMessages');
|
|
|
|
const isInteractive = process.stdout.isTTY;
|
|
let handleCompile;
|
|
|
|
// You can safely remove this after ejecting.
|
|
// We only use this block for testing of Create React App itself:
|
|
const isSmokeTest = process.argv.some(arg => arg.indexOf('--smoke-test') > -1);
|
|
if (isSmokeTest) {
|
|
handleCompile = (err, stats) => {
|
|
if (err || stats.hasErrors() || stats.hasWarnings()) {
|
|
process.exit(1);
|
|
} else {
|
|
process.exit(0);
|
|
}
|
|
};
|
|
}
|
|
|
|
module.exports = function createWebpackCompiler(config, onReadyCallback) {
|
|
// "Compiler" is a low-level interface to Webpack.
|
|
// It lets us listen to some events and provide our own custom messages.
|
|
let compiler;
|
|
try {
|
|
compiler = webpack(config, handleCompile);
|
|
} catch (err) {
|
|
console.log(chalk.red('Failed to compile.'));
|
|
console.log();
|
|
console.log(err.message || err);
|
|
console.log();
|
|
process.exit(1);
|
|
}
|
|
|
|
// "invalid" event fires when you have changed a file, and Webpack is
|
|
// recompiling a bundle. WebpackDevServer takes care to pause serving the
|
|
// bundle, so if you refresh, it'll wait instead of serving the old one.
|
|
// "invalid" is short for "bundle invalidated", it doesn't imply any errors.
|
|
compiler.plugin('invalid', () => {
|
|
if (isInteractive) {
|
|
clearConsole();
|
|
}
|
|
console.log('Compiling...');
|
|
});
|
|
|
|
let isFirstCompile = true;
|
|
|
|
// "done" event fires when Webpack has finished recompiling the bundle.
|
|
// Whether or not you have warnings or errors, you will get this event.
|
|
compiler.plugin('done', stats => {
|
|
if (isInteractive) {
|
|
clearConsole();
|
|
}
|
|
|
|
// We have switched off the default Webpack output in WebpackDevServer
|
|
// options so we are going to "massage" the warnings and errors and present
|
|
// them in a readable focused way.
|
|
const messages = formatWebpackMessages(stats.toJson({}, true));
|
|
const isSuccessful = !messages.errors.length && !messages.warnings.length;
|
|
const showInstructions = isSuccessful && (isInteractive || isFirstCompile);
|
|
|
|
if (isSuccessful) {
|
|
console.log(chalk.green('Compiled successfully!'));
|
|
}
|
|
|
|
if (typeof onReadyCallback === 'function') {
|
|
onReadyCallback(showInstructions);
|
|
}
|
|
isFirstCompile = false;
|
|
|
|
// If errors exist, only show errors.
|
|
if (messages.errors.length) {
|
|
console.log(chalk.red('Failed to compile.'));
|
|
console.log();
|
|
messages.errors.forEach(message => {
|
|
console.log(message);
|
|
console.log();
|
|
});
|
|
return;
|
|
}
|
|
|
|
// Show warnings if no errors were found.
|
|
if (messages.warnings.length) {
|
|
console.log(chalk.yellow('Compiled with warnings.'));
|
|
console.log();
|
|
messages.warnings.forEach(message => {
|
|
console.log(message);
|
|
console.log();
|
|
});
|
|
|
|
// Teach some ESLint tricks.
|
|
console.log(
|
|
'Search for the ' +
|
|
chalk.underline('rule keywords') +
|
|
' to learn more about each warning.'
|
|
);
|
|
console.log(
|
|
'To ignore, add ' +
|
|
chalk.yellow('// eslint-disable-next-line') +
|
|
' to the previous line.'
|
|
);
|
|
console.log();
|
|
}
|
|
});
|
|
|
|
return compiler;
|
|
};
|