Skip to content

Commit

Permalink
CircleCI Test
Browse files Browse the repository at this point in the history
  • Loading branch information
jcf94 committed Jan 17, 2018
1 parent caada04 commit eafb103
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,4 +39,4 @@ jobs:
# - run: yarn test

# run build
- run: npm run-script dist
- run: yarn run dist
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,13 @@ The major framework is based on Electron, so it should be worked on Windows, Mac
## For Developers

```bash
$ git clone https://github.com/jcf94/vizgraph.git
git clone https://github.com/jcf94/vizgraph.git

$ cd vizgraph
cd vizgraph

$ npm install
npm install

$ npm start
npm start
```

Then start playing it.
Expand All @@ -36,6 +36,6 @@ Use [electron-builder](https://github.com/electron-userland/electron-builder) to

## For Users

Get the latest [release](https://github.com/jcf94/vizgraph/releases). Unzip and it's tiny but useful.
Get the latest [release](https://github.com/jcf94/vizgraph/releases).

Sorry for only pack for Windows now.
Now we have portable packages for Windows(.exe) and Most Linux Repositories(.AppImage).
13 changes: 5 additions & 8 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,18 +33,15 @@
"win": {
"target": {
"target": "portable",
"arch": "ia32"
"arch": ["ia32", "x64"]
},
"publisherName": "Jcf94"
},
"linux": {
"target": [{
"target": "deb",
"arch": "ia32"
}, {
"target": "rpm",
"arch": "ia32"
}]
"target": {
"target": "AppImage",
"arch": ["ia32", "x64"]
}
}
}
}

0 comments on commit eafb103

Please sign in to comment.