build.js 1.62 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';

Dan Abramov's avatar
Dan Abramov committed
12
var path = require('path');
13
var rimrafSync = require('rimraf').sync;
14
var webpack = require('webpack');
15
var config = require('../config/webpack.config.prod');
16

Dan Abramov's avatar
Dan Abramov committed
17
18
19
var isInNodeModules = 'node_modules' ===
  path.basename(path.resolve(path.join(__dirname, '..', '..')));
var relative = isInNodeModules ? '../..' : '.';
20
21
22
if (process.argv[2] === '--debug-template') {
  relative = './template';
}
23
rimrafSync(relative + '/build');
24

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

Dan Abramov's avatar
Dan Abramov committed
32
  var openCommand = process.platform === 'win32' ? 'start' : 'open';
33
  var homepagePath = require(path.resolve(relative, 'package.json')).homepage;
Dan Abramov's avatar
Dan Abramov committed
34
35
  console.log('Successfully generated a bundle in the build folder!');
  console.log();
36
37
38
39
40
41
42
43
44
  if (homepagePath) {
    console.log('You can now deploy and serve it from ' + homepagePath + '.');
  } else {
    console.log('You can now serve it with any static server, for example:');
    console.log('  cd build');
    console.log('  npm install -g http-server');
    console.log('  hs');
    console.log('  ' + openCommand + ' http://localhost:8080');
  }
Dan Abramov's avatar
Dan Abramov committed
45
  console.log();
Dan Abramov's avatar
Dan Abramov committed
46
  console.log('The bundle is optimized and ready to be deployed to production.');
47
});