init.js 5.44 KB
Newer Older
Daniel Grant's avatar
Daniel Grant committed
1
// @remove-file-on-eject
Christopher Chedeau's avatar
Christopher Chedeau committed
2
3
4
5
6
7
8
9
10
/**
 * 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.
 */

11
12
'use strict';

13
var fs = require('fs-extra');
Dan Abramov's avatar
Dan Abramov committed
14
var path = require('path');
15
var spawn = require('cross-spawn');
16
var chalk = require('chalk');
17

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

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

  // Setup the script rules
Dan Abramov's avatar
Dan Abramov committed
29
  appPackage.scripts = {
30
31
32
33
    '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
34
  };
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
35

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

41
  var readmeExists = fs.existsSync(path.join(appPath, 'README.md'));
42
43
44
45
  if (readmeExists) {
    fs.renameSync(path.join(appPath, 'README.md'), path.join(appPath, 'README.old.md'));
  }

46
  // Copy the files for the user
47
48
49
50
51
52
53
  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
54

55
56
  // Rename gitignore after the fact to prevent npm from renaming it to .npmignore
  // See: https://github.com/npm/npm/issues/1862
57
58
59
60
61
62
63
64
65
66
67
68
  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;
      }
    }
  });
69

Ville Immonen's avatar
Ville Immonen committed
70
71
72
73
  var command;
  var args;

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

86
87
88
89
90
91
92
93
94
95
  // 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);
  }

96
97
98
99
100
101
  // Install react and react-dom for backward compatibility with old CRA cli
  // which doesn't install react and react-dom along with react-scripts
  // or template is presetend (via --internal-testing-template)
  if (!isReactInstalled(appPackage) || template) {
    console.log('Installing react and react-dom using ' + command + '...');
    console.log();
Ville Immonen's avatar
Ville Immonen committed
102

103
104
    var proc = spawn.sync(command, args, {stdio: 'inherit'});
    if (proc.status !== 0) {
Ville Immonen's avatar
Ville Immonen committed
105
      console.error('`' + command + ' ' + args.join(' ') + '` failed');
106
107
      return;
    }
108
  }
109

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

121
122
123
  // Change displayed command to yarn instead of yarnpkg
  var displayedCommand = useYarn ? 'yarn' : 'npm';

124
125
126
127
  console.log();
  console.log('Success! Created ' + appName + ' at ' + appPath);
  console.log('Inside that directory, you can run several commands:');
  console.log();
128
  console.log(chalk.cyan('  ' + displayedCommand + ' start'));
129
130
  console.log('    Starts the development server.');
  console.log();
131
  console.log(chalk.cyan('  ' + displayedCommand + ' run build'));
132
133
  console.log('    Bundles the app into static files for production.');
  console.log();
134
  console.log(chalk.cyan('  ' + displayedCommand + ' test'));
135
136
  console.log('    Starts the test runner.');
  console.log();
137
  console.log(chalk.cyan('  ' + displayedCommand + ' run eject'));
138
139
140
141
142
143
  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!');
  console.log();
  console.log('We suggest that you begin by typing:');
  console.log();
  console.log(chalk.cyan('  cd'), cdpath);
144
  console.log('  ' + chalk.cyan(displayedCommand + ' start'));
145
  if (readmeExists) {
146
    console.log();
147
148
149
150
    console.log(chalk.yellow('You had a `README.md` file, we renamed it to `README.old.md`'));
  }
  console.log();
  console.log('Happy hacking!');
151
};
152
153
154
155
156
157
158
159
160

function isReactInstalled(appPackage) {
  var dependencies = appPackage.dependencies || {};

  return (
    typeof dependencies.react !== 'undefined' &&
    typeof dependencies['react-dom'] !== 'undefined'
  )
}