build.js 1.78 KB
Newer Older
Christopher Chedeau's avatar
Christopher Chedeau committed
1
2
3
4
5
6
7
8
9
/**
 * 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.
 */

10
11
process.env.NODE_ENV = 'production';

12
var rimrafSync = require('rimraf').sync;
13
var webpack = require('webpack');
14
var config = require('../config/webpack.config.prod');
15
var paths = require('../config/paths');
16

17
rimrafSync(paths.appBuild);
18

19
20
webpack(config).run(function(err, stats) {
  if (err) {
Dan Abramov's avatar
Dan Abramov committed
21
    console.error('Failed to create a production build. Reason:');
22
    console.error(err.message || err);
23
24
25
    process.exit(1);
  }

Dan Abramov's avatar
Dan Abramov committed
26
  var openCommand = process.platform === 'win32' ? 'start' : 'open';
27
  var homepagePath = require(paths.appPackageJson).homepage;
Dan Abramov's avatar
Dan Abramov committed
28
  console.log('Successfully generated a bundle in the build folder!');
29
  if (homepagePath) {
30
31
32
33
34
35
36
37
38
39
    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();
40
  } else {
41
42
43
    console.log('You can now serve it with any static server.');
    console.log('For example:');
    console.log();
44
45
46
47
    console.log('  cd build');
    console.log('  npm install -g http-server');
    console.log('  hs');
    console.log('  ' + openCommand + ' http://localhost:8080');
48
    console.log();
49
  }
Dan Abramov's avatar
Dan Abramov committed
50
  console.log('The bundle is optimized and ready to be deployed to production.');
51
});