mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 01:36:55 +01:00
new logger for Jekyll task to show actual Jekyll output
This commit is contained in:
parent
bdec743701
commit
530f01994e
@ -125,7 +125,13 @@ export const jekyll = (done) => {
|
||||
|
||||
const jekyll = cp.execFile('bundle', ['exec', jekyll_options], { stdio: 'inherit' })
|
||||
|
||||
jekyll.on('error', (error) => onError() ).on('close', done)
|
||||
const jekyllLogger = (buffer) => {
|
||||
buffer.toString()
|
||||
.split(/\n/)
|
||||
.forEach((message) => console.log(message))
|
||||
}
|
||||
|
||||
jekyll.stdout.on('data', jekyllLogger).on('close', done)
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user