• Clement Hoang's avatar
    Switch to Babel 7 (#3522) · 1552949a
    Clement Hoang authored
    * Update dependencies in react-scripts
    
    * Add first pass of working dependencies for babel-preset-react-app and react-scripts
    
    * Bump more dependency versions
    
    * Adjust more versions and edit fix options
    
    * Restore functionality of old preset
    
    * Disable Uglify in iframe webpack
    
    * Apply prettier
    
    * Re-enable cache in dev and clean deps
    
    * Lock packages and move babel/core to dep in preset
    
    * Bump babel-jest
    
    * Re-enable uglify
    
    * Nest forceAllTransforms correctly in webpack config
    
    * Install babel-core bridge for jest
    
    * Add jest-cli and babel-core bridge to make tests in react-error-overlay pass
    
    * Re-enable transform-dynamic-import
    
    * Add dynamic import syntax support back
    
    * Use new babel in kitchensink
    
    * Transform modules in test
    
    * Revert "Transform modules in test"
    
    This reverts commit 539e46a1.
    
    * Attempt fix for ejected tests
    
    * try this
    
    * Add regenerator back
    
    * Bump babel deps to beta.34
    
    * Remove bad files
    
    * Use default when requiring babel transform plugin
    
    * Bump deps
    
    * Try the fix?
    
    * Oopsie
    
    * Remove some weird things
    
    * Run Babel on react-error-overlay tests
    
    * Try fixing kitchensink
    
    * Use new API for codeFrame
    
    * Add missing (?) babelrc
    
    * Maybe this helps?
    
    * Maybe fix mocha
    
    * I shouldn't have deleted this :face_palm:
    Unverified
    1552949a
build.js 2.11 KiB
/**
 * 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.');
});