Skip to content

Commit

Permalink
Fixes the build script for the cli.
Browse files Browse the repository at this point in the history
  • Loading branch information
skellock committed Aug 23, 2016
1 parent 82c3714 commit 0a1946d
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/quick-start-react-js.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Installing Reactotron.app

Let’s [download the desktop app](https://github.com/reactotron/reactotron/releases/download/v0.94.0/Reactotron.app.zip) to start. It’s OS X only at this point, but will shortly make available on Windows and Linux.
Let’s [download the desktop app](https://github.com/reactotron/reactotron/releases/download/v1.0.0/Reactotron.app.zip) to start. It’s OS X only at this point, but will shortly make available on Windows and Linux.

Unzip & run.

Expand Down
2 changes: 1 addition & 1 deletion docs/quick-start-react-native.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Installing Reactotron.app

Let’s [download the desktop app](https://github.com/reactotron/reactotron/releases/download/v0.94.0/Reactotron.app.zip) to start. It’s OS X only at this point, but will shortly make available on Windows and Linux.
Let’s [download the desktop app](https://github.com/reactotron/reactotron/releases/download/v1.0.0/Reactotron.app.zip) to start. It’s OS X only at this point, but will shortly make available on Windows and Linux.

Unzip & run.

Expand Down
2 changes: 1 addition & 1 deletion packages/reactotron-cli/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"watch": "ava --watch",
"coverage": "nyc ava",
"start": "babel-node src/index.js",
"build": "rollup -c"
"build": "rollup -c && mv dist/index.js dist/index.js.tmp && echo '#!/usr/bin/env node\n' > ./dist/index.js && cat dist/index.js.tmp >> ./dist/index.js && chmod +x ./dist/index.js"
},
"repository": "https://github.com/reactotron/reactotron/tree/master/packages/reactotron-cli",
"author": "Steve Kellock",
Expand Down
5 changes: 5 additions & 0 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,11 @@

Reactotron is a developer tool which allows you to peak under the kilt of your [React JS](https://facebook.github.io/react/) and [React Native](https://facebook.github.io/react-native/) apps.

### Download

[Download Mac App](https://github.com/reactotron/reactotron/releases/download/v1.0.0/Reactotron.app.zip)

### About

Use it to:

Expand Down

0 comments on commit 0a1946d

Please sign in to comment.