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 # build output
.next
npm-debug.log
dist dist
build build
# dependencies
node_modules
# logs
npm-debug.log
# other
.next

View file

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

View file

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