Skip to content

Commit

Permalink
Added build commands, updated README accordingly (#295)
Browse files Browse the repository at this point in the history
  • Loading branch information
bensleveritt authored and lipis committed Jan 16, 2017
1 parent 486dad1 commit 9123036
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Expand Up @@ -42,21 +42,21 @@ yarn start

### Test

```
```shell
yarn test
```

### Tasks

```shell
# Build for macOS
grunt macos-prod
yarn run build:macos

# Build for Windows
grunt win-prod
yarn run build:win

# Build for Linux
grunt linux-prod
yarn run build:linux
```

### Translations
Expand Down
6 changes: 4 additions & 2 deletions package.json
Expand Up @@ -10,8 +10,10 @@
"prod": "electron electron --debug=5858 --devtools --enable-logging --env=https://app.wire.com",
"localhost": "electron electron --debug=5858 --devtools --enable-logging --env=http://localhost:8888",
"test": "eslint electron && electron-mocha tests",
"rebuild-native-modules": "electron-rebuild -m ./electron/node_modules -f"

"rebuild-native-modules": "electron-rebuild -m ./electron/node_modules -f",
"build:macos": "grunt macos-prod",
"build:win": "grunt win-prod",
"build:linux": "grunt linux-prod"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 9123036

Please sign in to comment.