mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-13 04:28:41 -09:00
Minor improvements (#15)
* Use caps * Comments for ignored stuff * Description added * Use start command for launch * Cosmetic changes
This commit is contained in:
parent
0892122d6d
commit
79ad1316c3
4 changed files with 15 additions and 8 deletions
13
.gitignore
vendored
13
.gitignore
vendored
|
|
@ -1,5 +1,12 @@
|
|||
node_modules
|
||||
.next
|
||||
npm-debug.log
|
||||
# build output
|
||||
dist
|
||||
build
|
||||
|
||||
# dependencies
|
||||
node_modules
|
||||
|
||||
# logs
|
||||
npm-debug.log
|
||||
|
||||
# other
|
||||
.next
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
@ -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"
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue