mirror of
https://github.com/ipfs/awesome-ipfs.git
synced 2024-12-26 15:59:33 -05:00
update dev scripts
This commit is contained in:
parent
8d7d0222fc
commit
0544b37ba3
@ -7,21 +7,22 @@ const cssPath = path.join(__dirname, '../src/css')
|
||||
const jsPath = path.join(__dirname, '../src/js')
|
||||
const http = require('http')
|
||||
|
||||
const runHugo = () => {
|
||||
console.log('Rebuilding...')
|
||||
return runAll(['build:hugo'], {
|
||||
const options = {
|
||||
stdout: process.stdout,
|
||||
stderr: process.stderr
|
||||
}).then(() => console.log('Done!')).catch(console.log)
|
||||
}
|
||||
|
||||
const runHugo = () => {
|
||||
return runAll(['build:hugo'], options).catch(() => {})
|
||||
}
|
||||
|
||||
const handler = (path) => {
|
||||
if (path.startsWith(dataFolder)) {
|
||||
runAll(['build:data'], {parallel: false}).then(runHugo)
|
||||
runAll(['build:data'], options).then(runHugo)
|
||||
} else if (path.startsWith(cssPath)) {
|
||||
runAll(['build:css'], {parallel: false}).then(runHugo)
|
||||
runAll(['build:css'], options).then(runHugo)
|
||||
} else if (path.startsWith(jsPath)) {
|
||||
runAll(['build:js'], {parallel: false}).then(runHugo)
|
||||
runAll(['build:js'], options).then(runHugo)
|
||||
} else {
|
||||
runHugo()
|
||||
}
|
||||
@ -29,8 +30,12 @@ const handler = (path) => {
|
||||
|
||||
async function run () {
|
||||
console.log('Preparing fonts, css, js and data...')
|
||||
await runAll(['build:fonts', 'build:css', 'build:js', 'build:css', 'build:data'], {parallel: true})
|
||||
console.log('Running Hugo once...')
|
||||
await runAll(['build:fonts', 'build:css', 'build:js', 'build:icons', 'build:data'], {
|
||||
stdout: process.stdout,
|
||||
stderr: process.stderr,
|
||||
parallel: true
|
||||
})
|
||||
|
||||
await runHugo()
|
||||
|
||||
console.log('Starting server...')
|
||||
|
Loading…
Reference in New Issue
Block a user