Commit fb566a22 authored by wuyongsheng's avatar wuyongsheng

Merge branch 'rele-nginx' into 'release'

Rele nginx

See merge request !24
parents 9aceb607 63365f52
const build = require("./build")
process.env.REACT_APP_ENV = 'dev-cn';
build()
\ No newline at end of file
const build = require("./build")
process.env.REACT_APP_ENV = 'dev-en';
build()
\ No newline at end of file
const build = require("./build")
process.env.REACT_APP_ENV = 'global';
build()
\ No newline at end of file
const build = require("./build")
process.env.REACT_APP_ENV = 'master';
build()
\ No newline at end of file
const build = require("./build")
process.env.REACT_APP_ENV = 'release-cn';
build()
\ No newline at end of file
const build = require("./build")
process.env.REACT_APP_ENV = 'release-en';
build()
\ No newline at end of file
'use strict';
"use strict";
// Do this as the first thing so that any code reading it knows the right env.
process.env.BABEL_ENV = 'production';
process.env.NODE_ENV = 'production';
process.env.BABEL_ENV = "production";
process.env.NODE_ENV = "production";
// Makes the script crash on unhandled rejections instead of silently
// ignoring them. In the future, promise rejections that are not handled will
// terminate the Node.js process with a non-zero exit code.
process.on('unhandledRejection', err => {
process.on("unhandledRejection", (err) => {
throw err;
});
// Ensure environment variables are read.
require('../config/env');
const path = require('path');
const chalk = require('react-dev-utils/chalk');
const fs = require('fs-extra');
const bfj = require('bfj');
const webpack = require('webpack');
const configFactory = require('../config/webpack.config');
const paths = require('../config/paths');
const checkRequiredFiles = require('react-dev-utils/checkRequiredFiles');
const formatWebpackMessages = require('react-dev-utils/formatWebpackMessages');
const printHostingInstructions = require('react-dev-utils/printHostingInstructions');
const FileSizeReporter = require('react-dev-utils/FileSizeReporter');
const printBuildError = require('react-dev-utils/printBuildError');
require("../config/env");
const path = require("path");
const chalk = require("react-dev-utils/chalk");
const fs = require("fs-extra");
const bfj = require("bfj");
const webpack = require("webpack");
const configFactory = require("../config/webpack.config");
const paths = require("../config/paths");
const checkRequiredFiles = require("react-dev-utils/checkRequiredFiles");
const formatWebpackMessages = require("react-dev-utils/formatWebpackMessages");
const printHostingInstructions = require("react-dev-utils/printHostingInstructions");
const FileSizeReporter = require("react-dev-utils/FileSizeReporter");
const printBuildError = require("react-dev-utils/printBuildError");
const measureFileSizesBeforeBuild =
FileSizeReporter.measureFileSizesBeforeBuild;
......@@ -44,21 +44,21 @@ if (!checkRequiredFiles([paths.appHtml, paths.appIndexJs])) {
}
const argv = process.argv.slice(2);
const writeStatsJson = argv.indexOf('--stats') !== -1;
const writeStatsJson = argv.indexOf("--stats") !== -1;
// Generate configuration
const config = configFactory('production');
const config = configFactory("production");
// We require that you explicitly set browsers and do not fall back to
// browserslist defaults.
const { checkBrowsers } = require('react-dev-utils/browsersHelper');
const { checkBrowsers } = require("react-dev-utils/browsersHelper");
checkBrowsers(paths.appPath, isInteractive)
.then(() => {
// First, read the current file sizes in build directory.
// This lets us display how much they changed later.
return measureFileSizesBeforeBuild(paths.appBuild);
})
.then(previousFileSizes => {
.then((previousFileSizes) => {
// Remove all content but keep the directory so that
// if you're in it, you don't end up in Trash
fs.emptyDirSync(paths.appBuild);
......@@ -70,23 +70,23 @@ checkBrowsers(paths.appPath, isInteractive)
.then(
({ stats, previousFileSizes, warnings }) => {
if (warnings.length) {
console.log(chalk.yellow('Compiled with warnings.\n'));
console.log(warnings.join('\n\n'));
console.log(chalk.yellow("Compiled with warnings.\n"));
console.log(warnings.join("\n\n"));
console.log(
'\nSearch for the ' +
chalk.underline(chalk.yellow('keywords')) +
' to learn more about each warning.'
"\nSearch for the " +
chalk.underline(chalk.yellow("keywords")) +
" to learn more about each warning."
);
console.log(
'To ignore, add ' +
chalk.cyan('// eslint-disable-next-line') +
' to the line before.\n'
"To ignore, add " +
chalk.cyan("// eslint-disable-next-line") +
" to the line before.\n"
);
} else {
console.log(chalk.green('Compiled successfully.\n'));
console.log(chalk.green("Compiled successfully.\n"));
}
console.log('File sizes after gzip:\n');
console.log("File sizes after gzip:\n");
printFileSizesAfterBuild(
stats,
previousFileSizes,
......@@ -108,23 +108,23 @@ checkBrowsers(paths.appPath, isInteractive)
useYarn
);
},
err => {
const tscCompileOnError = process.env.TSC_COMPILE_ON_ERROR === 'true';
(err) => {
const tscCompileOnError = process.env.TSC_COMPILE_ON_ERROR === "true";
if (tscCompileOnError) {
console.log(
chalk.yellow(
'Compiled with the following type errors (you may want to check these before deploying your app):\n'
"Compiled with the following type errors (you may want to check these before deploying your app):\n"
)
);
printBuildError(err);
} else {
console.log(chalk.red('Failed to compile.\n'));
console.log(chalk.red("Failed to compile.\n"));
printBuildError(err);
process.exit(1);
}
}
)
.catch(err => {
.catch((err) => {
if (err && err.message) {
console.log(err.message);
}
......@@ -132,8 +132,8 @@ checkBrowsers(paths.appPath, isInteractive)
});
// Create the production build and print the deployment instructions.
function build(previousFileSizes) {
console.log('Creating an optimized production build...');
export default function build(previousFileSizes) {
console.log("Creating an optimized production build...");
const compiler = webpack(config);
return new Promise((resolve, reject) => {
......@@ -147,10 +147,10 @@ function build(previousFileSizes) {
let errMessage = err.message;
// Add additional information for postcss errors
if (Object.prototype.hasOwnProperty.call(err, 'postcssNode')) {
if (Object.prototype.hasOwnProperty.call(err, "postcssNode")) {
errMessage +=
'\nCompileError: Begins at CSS selector ' +
err['postcssNode'].selector;
"\nCompileError: Begins at CSS selector " +
err["postcssNode"].selector;
}
messages = formatWebpackMessages({
......@@ -168,26 +168,26 @@ function build(previousFileSizes) {
if (messages.errors.length > 1) {
messages.errors.length = 1;
}
return reject(new Error(messages.errors.join('\n\n')));
return reject(new Error(messages.errors.join("\n\n")));
}
if (
process.env.CI &&
(typeof process.env.CI !== 'string' ||
process.env.CI.toLowerCase() !== 'false') &&
(typeof process.env.CI !== "string" ||
process.env.CI.toLowerCase() !== "false") &&
messages.warnings.length
) {
// Ignore sourcemap warnings in CI builds. See #8227 for more info.
const filteredWarnings = messages.warnings.filter(
w => !/Failed to parse source map/.test(w)
(w) => !/Failed to parse source map/.test(w)
);
if (filteredWarnings.length) {
console.log(
chalk.yellow(
'\nTreating warnings as errors because process.env.CI = true.\n' +
'Most CI servers set it automatically.\n'
"\nTreating warnings as errors because process.env.CI = true.\n" +
"Most CI servers set it automatically.\n"
)
);
return reject(new Error(filteredWarnings.join('\n\n')));
return reject(new Error(filteredWarnings.join("\n\n")));
}
}
......@@ -199,9 +199,9 @@ function build(previousFileSizes) {
if (writeStatsJson) {
return bfj
.write(paths.appBuild + '/bundle-stats.json', stats.toJson())
.write(paths.appBuild + "/bundle-stats.json", stats.toJson())
.then(() => resolve(resolveArgs))
.catch(error => reject(new Error(error)));
.catch((error) => reject(new Error(error)));
}
return resolve(resolveArgs);
......@@ -212,6 +212,6 @@ function build(previousFileSizes) {
function copyPublicFolder() {
fs.copySync(paths.appPublic, paths.appBuild, {
dereference: true,
filter: file => file !== paths.appHtml,
filter: (file) => file !== paths.appHtml,
});
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment