init.js 954 Bytes
Newer Older
1
2
var fs = require('fs');

Christopher Chedeau's avatar
.    
Christopher Chedeau committed
3
4
5
6
7
8
9
10
11
12
13
14
15
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
  for (var key in selfPackage.devDependencies) {
    hostPackage.dependencies[key] = selfPackage.devDependencies[key];
  }

  // Setup the script rules
  hostPackage.scripts = {};
16
17
  ['start', 'build'].forEach(function(command) {
    hostPackage.scripts[command] = 'node node_modules/create-react-app-scripts/scripts/' + command + '.js';
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
18
19
20
21
  });

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

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

Christopher Chedeau's avatar
.    
Christopher Chedeau committed
24
  // Move the src folder
25
  fs.renameSync(selfPath + '/src', hostPath + '/src');
Christopher Chedeau's avatar
.    
Christopher Chedeau committed
26
27

  console.log('Creating the app', appName, 'at', hostPath);
28
};