init.js 2.38 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
var fs = require('fs');
Dan Abramov's avatar
Dan Abramov committed
11
var path = require('path');
12
var spawn = require('cross-spawn');
13

14
module.exports = function(hostPath, appName, verbose) {
Dan Abramov's avatar
Dan Abramov committed
15
  var selfPath = path.join(hostPath, 'node_modules', 'create-react-app-scripts');
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
16

Dan Abramov's avatar
Dan Abramov committed
17
18
  var hostPackage = require(path.join(hostPath, 'package.json'));
  var selfPackage = require(path.join(selfPath, 'package.json'));
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
19
20

  // Copy over devDependencies
21
  hostPackage.dependencies = hostPackage.dependencies || {};
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
22
23
24
25
26
27
  for (var key in selfPackage.devDependencies) {
    hostPackage.dependencies[key] = selfPackage.devDependencies[key];
  }

  // Setup the script rules
  hostPackage.scripts = {};
28
  ['start', 'build', 'graduate'].forEach(function(command) {
Christopher Chedeau's avatar
Christopher Chedeau committed
29
    hostPackage.scripts[command] =
30
      command + '-react-app';
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
31
32
  });

Dan Abramov's avatar
Dan Abramov committed
33
34
35
36
  fs.writeFileSync(
    path.join(hostPath, 'package.json'),
    JSON.stringify(hostPackage, null, 2)
  );
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
37

Max's avatar
Max committed
38
  // Move the files for the user
39
  // TODO: copying might be more correct?
Dan Abramov's avatar
Dan Abramov committed
40
  fs.renameSync(path.join(selfPath, 'src'), path.join(hostPath, 'src'));
Max's avatar
Max committed
41
  fs.renameSync(path.join(selfPath, 'index.html'), path.join(hostPath, 'index.html'));
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
42

43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
  // Run another npm install for react and react-dom
  // TODO: having to do two npm installs is bad, can we avoid it?
  var args = [
    'install',
    verbose && '--verbose'
  ].filter(function(e) { return e; });
  var proc = spawn('npm', args, {stdio: 'inherit'});
  proc.on('close', function (code) {
    if (code !== 0) {
      console.error('`npm ' + args.join(' ') + '` failed');
      return;
    }

    console.log('Success! Created ' + appName + ' at ' + hostPath + '.');
    console.log();
    console.log('Inside that directory, you can run several commands:');
    console.log('  * npm start: Starts the development server.');
    console.log('  * npm run build: Builds the app for production.');
    console.log('  * npm run graduate: Removes this tool. If you do this, you can’t go back!');
    console.log();
    console.log('We suggest that you begin by typing:');
    console.log('  cd', appName);
    console.log('  npm start');
    console.log();
    console.log('Happy hacking!');
  });
69
};