init.js 1.76 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
11
var fs = require('fs');

Christopher Chedeau's avatar
.    
Christopher Chedeau committed
12
13
14
15
16
17
18
module.exports = function(hostPath, appName) {
  var selfPath = hostPath + '/node_modules/create-react-app-scripts';

  var hostPackage = require(hostPath + '/package.json');
  var selfPackage = require(selfPath + '/package.json');

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

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

  fs.writeFileSync(hostPath + '/package.json', JSON.stringify(hostPackage, null, 2));

33
34
  // TODO: run npm install in hostPath, (not needed for npm 3 if we accept some hackery)

Christopher Chedeau's avatar
.    
Christopher Chedeau committed
35
  // Move the src folder
36
  fs.renameSync(selfPath + '/src', hostPath + '/src');
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
37

38
39
40
41
42
43
44
45
46
47
48
49
  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!');
50
};