Minor improvements (#15)

* Use caps

* Comments for ignored stuff

* Description added

* Use start command for launch

* Cosmetic changes
This commit is contained in:
Leo Lamprecht 2016-07-02 21:03:45 +02:00 committed by Guillermo Rauch
parent 0892122d6d
commit 79ad1316c3
4 changed files with 15 additions and 8 deletions

13
.gitignore vendored
View file

@ -1,5 +1,12 @@
node_modules
.next
npm-debug.log
# build output
dist
build
# dependencies
node_modules
# logs
npm-debug.log
# other
.next

View file

@ -1,6 +1,6 @@
# hyperterm
## Developing
## Contribute
To install `package.json` dependencies in a way where the native
modules are built with `electron`, run:
@ -22,10 +22,10 @@ $ webpack --watch
Then you can run:
```bash
$ electron index
$ npm start
```
to launch the app!
...to launch the app!
## TODO

View file

@ -2,7 +2,7 @@
"name": "hyperterm",
"productName": "HyperTerm",
"version": "0.1.0",
"description": "",
"description": "HTML/JS/CSS Terminal",
"dependencies": {
"child_pty": "3.0.1",
"default-shell": "1.0.1",
@ -37,7 +37,7 @@
}
},
"scripts": {
"launch": "electron index",
"start": "electron index",
"lint": "eslint *.js"
}
}