init.js 5.54 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
/**
 * 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
'use strict';

12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
const fs = require('fs-extra');
const path = require('path');
const spawn = require('cross-spawn');
const chalk = require('chalk');

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

Dan Abramov's avatar
Dan Abramov committed
33
  // Copy over some of the devDependencies
34
  appPackage.dependencies = appPackage.dependencies || {};
Christoph Pojer's avatar
Christoph Pojer committed
35
  appPackage.devDependencies = appPackage.devDependencies || {};
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
36
37

  // Setup the script rules
Dan Abramov's avatar
Dan Abramov committed
38
  appPackage.scripts = {
39
40
41
42
    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
43
  };
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
44

Dan Abramov's avatar
Dan Abramov committed
45
  fs.writeFileSync(
46
47
    path.join(appPath, 'package.json'),
    JSON.stringify(appPackage, null, 2)
Dan Abramov's avatar
Dan Abramov committed
48
  );
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
49

50
  const readmeExists = fs.existsSync(path.join(appPath, 'README.md'));
51
  if (readmeExists) {
52
53
54
55
    fs.renameSync(
      path.join(appPath, 'README.md'),
      path.join(appPath, 'README.old.md')
    );
56
57
  }

58
  // Copy the files for the user
59
60
61
  const templatePath = template
    ? path.resolve(originalDirectory, template)
    : path.join(ownPath, 'template');
62
63
64
  if (fs.existsSync(templatePath)) {
    fs.copySync(templatePath, appPath);
  } else {
65
66
67
    console.error(
      `Could not locate supplied template: ${chalk.green(templatePath)}`
    );
68
69
    return;
  }
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
70

71
72
  // Rename gitignore after the fact to prevent npm from renaming it to .npmignore
  // See: https://github.com/npm/npm/issues/1862
73
74
75
76
77
78
79
80
81
82
83
84
85
86
  fs.move(
    path.join(appPath, 'gitignore'),
    path.join(appPath, '.gitignore'),
    [],
    err => {
      if (err) {
        // Append if there's already a `.gitignore` file there
        if (err.code === 'EEXIST') {
          const data = fs.readFileSync(path.join(appPath, 'gitignore'));
          fs.appendFileSync(path.join(appPath, '.gitignore'), data);
          fs.unlinkSync(path.join(appPath, 'gitignore'));
        } else {
          throw err;
        }
87
88
      }
    }
89
  );
90

91
92
  let command;
  let args;
Ville Immonen's avatar
Ville Immonen committed
93
94

  if (useYarn) {
95
    command = 'yarnpkg';
Ville Immonen's avatar
Ville Immonen committed
96
97
98
    args = ['add'];
  } else {
    command = 'npm';
99
    args = ['install', '--save', verbose && '--verbose'].filter(e => e);
Ville Immonen's avatar
Ville Immonen committed
100
101
102
  }
  args.push('react', 'react-dom');

103
  // Install additional template dependencies, if present
104
105
106
107
  const templateDependenciesPath = path.join(
    appPath,
    '.template.dependencies.json'
  );
108
  if (fs.existsSync(templateDependenciesPath)) {
109
110
111
112
113
114
    const templateDependencies = require(templateDependenciesPath).dependencies;
    args = args.concat(
      Object.keys(templateDependencies).map(key => {
        return `${key}@${templateDependencies[key]}`;
      })
    );
115
116
117
    fs.unlinkSync(templateDependenciesPath);
  }

118
119
120
121
  // 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) {
122
    console.log(`Installing react and react-dom using ${command}...`);
123
    console.log();
Ville Immonen's avatar
Ville Immonen committed
124

125
    const proc = spawn.sync(command, args, { stdio: 'inherit' });
126
    if (proc.status !== 0) {
127
      console.error(`\`${command} ${args.join(' ')}\` failed`);
128
129
      return;
    }
130
  }
131

132
133
134
  // Display the most elegant way to cd.
  // This needs to handle an undefined originalDirectory for
  // backward compatibility with old global-cli's.
135
136
  let cdpath;
  if (originalDirectory && path.join(originalDirectory, appName) === appPath) {
137
138
139
140
    cdpath = appName;
  } else {
    cdpath = appPath;
  }
Kevin Lacker's avatar
Kevin Lacker committed
141

142
  // Change displayed command to yarn instead of yarnpkg
143
  const displayedCommand = useYarn ? 'yarn' : 'npm';
144

145
  console.log();
146
  console.log(`Success! Created ${appName} at ${appPath}`);
147
148
  console.log('Inside that directory, you can run several commands:');
  console.log();
149
  console.log(chalk.cyan(`  ${displayedCommand} start`));
150
151
  console.log('    Starts the development server.');
  console.log();
152
  console.log(chalk.cyan(`  ${displayedCommand} run build`));
153
154
  console.log('    Bundles the app into static files for production.');
  console.log();
155
  console.log(chalk.cyan(`  ${displayedCommand} test`));
156
157
  console.log('    Starts the test runner.');
  console.log();
158
159
160
161
162
163
164
  console.log(chalk.cyan(`  ${displayedCommand} run eject`));
  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!'
  );
165
166
167
168
  console.log();
  console.log('We suggest that you begin by typing:');
  console.log();
  console.log(chalk.cyan('  cd'), cdpath);
169
  console.log(`  ${chalk.cyan(`${displayedCommand} start`)}`);
170
  if (readmeExists) {
171
    console.log();
172
173
174
175
176
    console.log(
      chalk.yellow(
        'You had a `README.md` file, we renamed it to `README.old.md`'
      )
    );
177
178
179
  }
  console.log();
  console.log('Happy hacking!');
180
};
181
182

function isReactInstalled(appPackage) {
183
  const dependencies = appPackage.dependencies || {};
184

185
186
  return typeof dependencies.react !== 'undefined' &&
    typeof dependencies['react-dom'] !== 'undefined';
187
}