1
1
mirror of https://github.com/c8r/x0.git synced 2024-09-11 21:57:26 +03:00

Adjust cli logs

This commit is contained in:
Brent Jackson 2018-05-20 17:23:40 -04:00
parent 29e9a2a615
commit 013210f5aa
2 changed files with 4 additions and 2 deletions

2
cli.js
View File

@ -119,6 +119,8 @@ const handleError = err => {
process.exit(1)
}
log('@compositor/x0')
switch (cmd) {
case 'build':
log.start('building static site')

View File

@ -8,8 +8,8 @@
},
"scripts": {
"start": "./cli.js docs -op 8888",
"static": "./cli.js build docs --static -d docs",
"build": "./cli.js build docs -d docs -c docs/webpack.config.js",
"static": "./cli.js build docs --static",
"build": "./cli.js build docs",
"test": "nyc ava",
"cover": "nyc report --reporter=html --reporter=lcov"
},