Skip to content

Commit

Permalink
fix: lower loglevel
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed Jan 28, 2018
1 parent 05fce1b commit 5286151
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions templates/app/package-scripts.js.ejs
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ if (process.env.CI) {
test = concurrent({
...linters,
test: series(<%- ts ? "'nps build', " : ''%>test),
test: series(<%- ts ? "'nps build -l warn', " : ''%>test),
})
if (process.env.CI) test = series(mkdirp('reports'), test)
<%_ } else if (ts) { _%>
let test = concurrent({...linters, build: 'nps build'})
let test = concurrent({...linters, build: 'nps build -l warn'})
<%_ } else { _%>
let test = concurrent(linters)
<%_ } _%>
Expand Down

0 comments on commit 5286151

Please sign in to comment.