Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

use relative binary paths, document package command #11

Merged
merged 2 commits into from
Jun 21, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,20 @@ Electron Shell based ipfs app

```bash
npm run start
```

# packaging

will be written to ./pkg

## make a package for your system

```bash
npm run package
```

## make packages for all platforms

```bash
npm run package-all
```
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "electron index.js 2>&1 | silence-chromium",
"start": "node_modules/.bin/electron index.js 2>&1 | node_modules/.bin/silence-chromium",
"lint": "git diff --name-only --cached --relative | egrep .js$ | xargs --no-run-if-empty standard",
"package": "node pkg.js",
"package-all": "node pkg.js --all"
Expand Down