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
```
This commit is contained in:
Christopher Chedeau
2016-07-15 13:21:21 -07:00
parent 9800d05316
commit 2305bf2397
5 changed files with 177 additions and 1 deletions

12
global-cli/package.json Normal file
View File

@@ -0,0 +1,12 @@
{
"name": "create-react-app",
"version": "1.0.0",
"bin": {
"create-react-app": "index.js"
},
"dependencies": {
"chalk": "^1.1.1",
"minimist": "^1.2.0",
"semver": "^5.0.3"
}
}