mirror of
https://github.com/zhigang1992/create-react-app.git
synced 2026-04-07 17:17:15 +08:00
* Provide instructions on GH Pages deploy * Add docs for GH Pages deployment * Prevent incorrect paths in file-loader * Minor message tweaks * Update README.md * Fix relative paths
60 lines
2.1 KiB
JavaScript
60 lines
2.1 KiB
JavaScript
/**
|
|
* 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.
|
|
*/
|
|
|
|
process.env.NODE_ENV = 'production';
|
|
|
|
var path = require('path');
|
|
var rimrafSync = require('rimraf').sync;
|
|
var webpack = require('webpack');
|
|
var config = require('../config/webpack.config.prod');
|
|
|
|
var isInNodeModules = 'node_modules' ===
|
|
path.basename(path.resolve(path.join(__dirname, '..', '..')));
|
|
var relative = isInNodeModules ? '../../..' : '..';
|
|
if (process.argv[2] === '--debug-template') {
|
|
relative = '../template';
|
|
}
|
|
var packageJsonPath = path.join(__dirname, relative, 'package.json');
|
|
var buildPath = path.join(__dirname, relative, 'build');
|
|
rimrafSync(buildPath);
|
|
|
|
webpack(config).run(function(err, stats) {
|
|
if (err) {
|
|
console.error('Failed to create a production build. Reason:');
|
|
console.error(err.message || err);
|
|
process.exit(1);
|
|
}
|
|
|
|
var openCommand = process.platform === 'win32' ? 'start' : 'open';
|
|
var homepagePath = require(packageJsonPath).homepage;
|
|
console.log('Successfully generated a bundle in the build folder!');
|
|
if (homepagePath) {
|
|
console.log('You can now deploy it to ' + homepagePath + '.');
|
|
console.log('For example, if you use GitHub Pages:');
|
|
console.log();
|
|
console.log(' git checkout -B gh-pages');
|
|
console.log(' git add -f build');
|
|
console.log(' git commit -am "Rebuild website"');
|
|
console.log(' git push origin :gh-pages');
|
|
console.log(' git subtree push --prefix build origin gh-pages');
|
|
console.log(' git checkout -');
|
|
console.log();
|
|
} else {
|
|
console.log('You can now serve it with any static server.');
|
|
console.log('For example:');
|
|
console.log();
|
|
console.log(' cd build');
|
|
console.log(' npm install -g http-server');
|
|
console.log(' hs');
|
|
console.log(' ' + openCommand + ' http://localhost:8080');
|
|
console.log();
|
|
}
|
|
console.log('The bundle is optimized and ready to be deployed to production.');
|
|
});
|