Skip to content

Commit

Permalink
cleaning up a bit
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesread committed Feb 4, 2018
1 parent db8667d commit 32477f6
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 22 deletions.
4 changes: 2 additions & 2 deletions README.md
Expand Up @@ -123,10 +123,10 @@ Then `node index.js` and visit http://localhost:8080 to see your home page.

### Too lazy for that noise?

Check this out, just a one liner that installs everything and starts your project:
Check this out, just a one liner that installs `hmls`, scaffolds out a simple project, and starts it up:

```bash
$ mkdir my-project && cd my-project && npm i -g hmls && npm init && npm i -S hmls && hmls --scaffold && node index.js
$ mkdir my-project && cd my-project && npm init && npm i -S hmls && node node_modules/hmls/bin/hmls.js -s && node index.js
```

## Scaffolding
Expand Down
2 changes: 1 addition & 1 deletion bin/hmls.js
Expand Up @@ -6,7 +6,7 @@ const colors = require('colors')
const copydir = require('copy-dir')
const nopt = require('nopt')
const noptUsage = require('nopt-usage')
const path = require("path")
const path = require('path')
const knownOpts = {
"projectRoot": path,
"scaffold": Boolean,
Expand Down
19 changes: 3 additions & 16 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 1 addition & 3 deletions package.json
Expand Up @@ -36,21 +36,19 @@
"colors": "^1.1.2",
"copy-dir": "^0.3.0",
"debug": "^3.1.0",
"deep-assign": "^2.0.0",
"deep-extend": "^0.5.0",
"hapi": "^17.2.0",
"inert": "^5.1.0",
"lasso": "^3.1.2",
"lasso-less": "^2.4.7",
"lasso-marko": "^2.4.0",
"marko": "^4.7.5",
"mkdirp": "^0.5.1",
"node-dir": "^0.1.17",
"nopt": "^4.0.1",
"nopt-usage": "^0.1.0",
"require-self-ref": "^2.0.1",
"socket.io": "^2.0.4",
"type-detect": "^4.0.7"
"type-detect": "^4.0.8"
},
"devDependencies": {
"chai": "^4.1.2",
Expand Down

0 comments on commit 32477f6

Please sign in to comment.