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

15
module.exports = function(appPath, appName, verbose, originalDirectory, template) {
16
17
  var ownPackageName = require(path.join(__dirname, '..', 'package.json')).name;
  var ownPath = path.join(appPath, 'node_modules', ownPackageName);
18
  var appPackage = require(path.join(appPath, 'package.json'));
19
  var useYarn = fs.existsSync(path.join(appPath, 'yarn.lock'));
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
20

Dan Abramov's avatar
Dan Abramov committed
21
  // Copy over some of the devDependencies
22
  appPackage.dependencies = appPackage.dependencies || {};
Christoph Pojer's avatar
Christoph Pojer committed
23
  appPackage.devDependencies = appPackage.devDependencies || {};
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
24
25

  // Setup the script rules
Dan Abramov's avatar
Dan Abramov committed
26
  appPackage.scripts = {
27
28
29
30
    'start': 'react-scripts start',
    'build': 'react-scripts build',
    'test': 'react-scripts test --env=jsdom',
    'eject': 'react-scripts eject'
Dan Abramov's avatar
Dan Abramov committed
31
  };
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
32

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

38
  var readmeExists = fs.existsSync(path.join(appPath, 'README.md'));
39
40
41
42
  if (readmeExists) {
    fs.renameSync(path.join(appPath, 'README.md'), path.join(appPath, 'README.old.md'));
  }

43
  // Copy the files for the user
44
45
46
47
48
49
50
  var templatePath = template ? path.resolve(originalDirectory, template) : path.join(ownPath, 'template');
  if (fs.existsSync(templatePath)) {
    fs.copySync(templatePath, appPath);
  } else {
    console.error('Could not locate supplied template: ' + chalk.green(templatePath));
    return;
  }
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
51

52
53
  // Rename gitignore after the fact to prevent npm from renaming it to .npmignore
  // See: https://github.com/npm/npm/issues/1862
54
55
56
57
58
59
60
61
62
63
64
65
  fs.move(path.join(appPath, 'gitignore'), path.join(appPath, '.gitignore'), [], function (err) {
    if (err) {
      // Append if there's already a `.gitignore` file there
      if (err.code === 'EEXIST') {
        var data = fs.readFileSync(path.join(appPath, 'gitignore'));
        fs.appendFileSync(path.join(appPath, '.gitignore'), data);
        fs.unlinkSync(path.join(appPath, 'gitignore'));
      } else {
        throw err;
      }
    }
  });
66

Ville Immonen's avatar
Ville Immonen committed
67
68
69
70
71
72
  // Run yarn or npm for react and react-dom
  // TODO: having to do two npm/yarn installs is bad, can we avoid it?
  var command;
  var args;

  if (useYarn) {
73
    command = 'yarnpkg';
Ville Immonen's avatar
Ville Immonen committed
74
75
76
77
78
79
80
81
82
83
84
    args = ['add'];
  } else {
    command = 'npm';
    args = [
      'install',
      '--save',
      verbose && '--verbose'
    ].filter(function(e) { return e; });
  }
  args.push('react', 'react-dom');

85
86
87
88
89
90
91
92
93
94
  // Install additional template dependencies, if present
  var templateDependenciesPath = path.join(appPath, '.template.dependencies.json');
  if (fs.existsSync(templateDependenciesPath)) {
    var templateDependencies = require(templateDependenciesPath).dependencies;
    args = args.concat(Object.keys(templateDependencies).map(function (key) {
      return key + '@' + templateDependencies[key];
    }));
    fs.unlinkSync(templateDependenciesPath);
  }

Ville Immonen's avatar
Ville Immonen committed
95
  console.log('Installing react and react-dom using ' + command + '...');
96
  console.log();
Ville Immonen's avatar
Ville Immonen committed
97
98

  var proc = spawn(command, args, {stdio: 'inherit'});
99
100
  proc.on('close', function (code) {
    if (code !== 0) {
Ville Immonen's avatar
Ville Immonen committed
101
      console.error('`' + command + ' ' + args.join(' ') + '` failed');
102
103
104
      return;
    }

Kevin Lacker's avatar
Kevin Lacker committed
105
106
107
    // Display the most elegant way to cd.
    // This needs to handle an undefined originalDirectory for
    // backward compatibility with old global-cli's.
Kevin Lacker's avatar
Kevin Lacker committed
108
    var cdpath;
Kevin Lacker's avatar
Kevin Lacker committed
109
    if (originalDirectory &&
110
        path.join(originalDirectory, appName) === appPath) {
Kevin Lacker's avatar
Kevin Lacker committed
111
112
      cdpath = appName;
    } else {
113
      cdpath = appPath;
Kevin Lacker's avatar
Kevin Lacker committed
114
115
    }

116
    console.log();
117
    console.log('Success! Created ' + appName + ' at ' + appPath);
118
    console.log('Inside that directory, you can run several commands:');
119
    console.log();
Ville Immonen's avatar
Ville Immonen committed
120
    console.log(chalk.cyan('  ' + command + ' start'));
Dan Abramov's avatar
Dan Abramov committed
121
    console.log('    Starts the development server.');
122
    console.log();
Ville Immonen's avatar
Ville Immonen committed
123
    console.log(chalk.cyan('  ' + command + ' run build'));
Dan Abramov's avatar
Dan Abramov committed
124
    console.log('    Bundles the app into static files for production.');
125
    console.log();
Ville Immonen's avatar
Ville Immonen committed
126
    console.log(chalk.cyan('  ' + command + ' test'));
Dan Abramov's avatar
Dan Abramov committed
127
    console.log('    Starts the test runner.');
128
    console.log();
Ville Immonen's avatar
Ville Immonen committed
129
    console.log(chalk.cyan('  ' + command + ' run eject'));
Dan Abramov's avatar
Dan Abramov committed
130
131
    console.log('    Removes this tool and copies build dependencies, configuration files');
    console.log('    and scripts into the app directory. If you do this, you can’t go back!');
132
133
    console.log();
    console.log('We suggest that you begin by typing:');
134
    console.log();
Dan Abramov's avatar
Dan Abramov committed
135
    console.log(chalk.cyan('  cd'), cdpath);
Ville Immonen's avatar
Ville Immonen committed
136
    console.log('  ' + chalk.cyan(command + ' start'));
137
138
139
140
    if (readmeExists) {
      console.log();
      console.log(chalk.yellow('You had a `README.md` file, we renamed it to `README.old.md`'));
    }
141
142
143
    console.log();
    console.log('Happy hacking!');
  });
144
};