mirror of
https://github.com/kvz/bash3boilerplate.git
synced 2024-12-18 22:27:51 +00:00
60 lines
1.6 KiB
JavaScript
60 lines
1.6 KiB
JavaScript
const path = require('path')
|
|
const _ = require('lodash')
|
|
|
|
module.exports.overrideRuntime = function ({ runtime, toolkit }) {
|
|
let preBuilds = []
|
|
let postBuilds = []
|
|
|
|
if (!runtime.isDev) {
|
|
preBuilds = preBuilds.concat([
|
|
'npm run inject',
|
|
])
|
|
postBuilds = postBuilds.concat([
|
|
// 'npm run redirects',
|
|
])
|
|
}
|
|
|
|
// "lanyon": {
|
|
// "projectDir": "website",
|
|
// "contentScandir": "../",
|
|
// "contentIgnore": [
|
|
// "website/*.md",
|
|
// "website/main.sh"
|
|
// ]
|
|
// },
|
|
|
|
// runtime['npmRoot'] = `${__dirname}`
|
|
runtime.projectDir = `${__dirname}/website`
|
|
|
|
runtime.cacheDir = path.join(runtime.projectDir, '.lanyon')
|
|
runtime.recordsPath = path.join(runtime.cacheDir, 'records.json')
|
|
runtime.assetsSourceDir = path.join(runtime.projectDir, 'assets')
|
|
runtime.assetsBuildDir = path.join(runtime.assetsSourceDir, 'build')
|
|
runtime.contentScandir = path.join(runtime.projectDir, runtime.contentScandir || '.')
|
|
runtime.contentBuildDir = path.join(runtime.projectDir, '_site')
|
|
|
|
runtime['prebuild:content'] = preBuilds.join(' && ')
|
|
runtime['postbuild:content'] = postBuilds.join(' && ')
|
|
|
|
return runtime
|
|
}
|
|
|
|
module.exports.overrideConfig = function ({ config, toolkit }) {
|
|
if (config.runtime.isDev) {
|
|
config.jekyll.url = 'http://localhost:3000'
|
|
}
|
|
|
|
config.jekyll.profile = true
|
|
config.jekyll.trace = true
|
|
|
|
if (config.runtime.isDev) {
|
|
config.jekyll.unpublished = true
|
|
config.jekyll.future = true
|
|
config.jekyll.incremental = true // <-- for clarify; incremental is the default also
|
|
} else {
|
|
config.jekyll.incremental = false
|
|
}
|
|
|
|
return config
|
|
}
|