mirror of
https://github.com/quine-global/hyper.git
synced 2026-01-18 06:28:40 -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
|
# build output
|
||||||
.next
|
|
||||||
npm-debug.log
|
|
||||||
dist
|
dist
|
||||||
build
|
build
|
||||||
|
|
||||||
|
# dependencies
|
||||||
|
node_modules
|
||||||
|
|
||||||
|
# logs
|
||||||
|
npm-debug.log
|
||||||
|
|
||||||
|
# other
|
||||||
|
.next
|
||||||
|
|
|
||||||
|
|
@ -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
|
||||||
|
|
||||||
|
|
@ -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"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue