build.js 1.88 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
18
19
// Remove all content but keep the directory so that
// if you're in it, you don't end up in Trash
rimrafSync(paths.appBuild + '/*');
20

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

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