roadmap/quartz/bootstrap-cli.mjs

108 lines
2.8 KiB
JavaScript
Raw Normal View History

2023-05-29 00:44:08 +00:00
#!/usr/bin/env node
2023-06-03 19:07:19 +00:00
import { promises, readFileSync } from 'fs'
2023-05-30 15:02:20 +00:00
import yargs from 'yargs'
2023-06-03 19:07:19 +00:00
import path from 'path'
2023-05-30 15:02:20 +00:00
import { hideBin } from 'yargs/helpers'
import esbuild from 'esbuild'
import chalk from 'chalk'
2023-06-01 21:35:31 +00:00
import { sassPlugin } from 'esbuild-sass-plugin'
2023-05-30 15:02:20 +00:00
2023-06-04 16:35:45 +00:00
const cacheFile = "./.quartz-cache/transpiled-build.mjs"
const fp = "./quartz/build.ts"
2023-05-30 15:02:20 +00:00
const { version } = JSON.parse(readFileSync("./package.json").toString())
export const BuildArgv = {
output: {
string: true,
alias: ['o'],
default: 'public',
describe: 'output folder for files'
},
clean: {
boolean: true,
default: false,
describe: 'clean the output folder before building'
},
serve: {
boolean: true,
default: false,
describe: 'run a local server to preview your Quartz'
},
port: {
number: true,
default: 8080,
describe: 'port to serve Quartz on'
},
directory: {
string: true,
alias: ['d'],
default: 'content',
describe: 'directory to look for content files'
},
verbose: {
boolean: true,
alias: ['v'],
default: false,
describe: 'print out extra logging information'
}
}
yargs(hideBin(process.argv))
.scriptName("quartz")
.version(version)
.usage('$0 <cmd> [args]')
.command('build', 'Build Quartz into a bundle of static HTML files', BuildArgv, async (argv) => {
2023-06-04 16:35:45 +00:00
await esbuild.build({
2023-05-30 15:02:20 +00:00
entryPoints: [fp],
2023-06-04 16:35:45 +00:00
outfile: path.join("quartz", cacheFile),
2023-05-30 15:02:20 +00:00
bundle: true,
keepNames: true,
platform: "node",
2023-06-04 16:35:45 +00:00
format: "esm",
2023-05-30 15:02:20 +00:00
jsx: "automatic",
jsxImportSource: "preact",
2023-06-04 16:35:45 +00:00
packages: "external",
2023-06-03 19:07:19 +00:00
plugins: [
sassPlugin({
type: 'css-text'
}),
{
name: 'inline-script-loader',
setup(build) {
build.onLoad({ filter: /\.inline\.(ts|js)$/ }, async (args) => {
let text = await promises.readFile(args.path, 'utf8')
const transpiled = await esbuild.build({
stdin: {
contents: text,
sourcefile: path.relative(path.resolve('.'), args.path),
},
write: false,
bundle: true,
platform: "browser",
format: "esm",
})
const rawMod = transpiled.outputFiles[0].text
return {
contents: rawMod,
loader: 'text',
}
})
}
}
]
2023-05-30 15:02:20 +00:00
}).catch(err => {
console.error(`${chalk.red("Couldn't parse Quartz configuration:")} ${fp}`)
console.log(`Reason: ${chalk.grey(err)}`)
console.log("hint: make sure all the required dependencies are installed (run `npm install`)")
process.exit(1)
})
2023-06-04 16:35:45 +00:00
const { default: init } = await import(cacheFile)
2023-05-30 15:02:20 +00:00
init(argv, version)
})
.showHelpOnFail(false)
.help()
.strict()
.demandCommand()
.argv