Files
create-react-app/init.js
Christopher Chedeau 2305bf2397 Initial version of the global cli
Test Plan:

```
npm pack
node global-cli/index.js testing --scripts-version /Users/vjeux/random/react-getting-started/create-react-app-scripts-0.0.1.tgz
```

make sure it shows

```
Creating the app testing at /Users/vjeux/random/react-getting-started/testing
```
2016-07-18 15:17:55 -07:00

4 lines
102 B
JavaScript

module.exports = function(root, appName) {
console.log('Creating the app', appName, 'at', root);
};