| | |
| | | import 'source-map-support/register.js' |
| | | import path from "path" |
| | | import { PerfTimer } from "./perf" |
| | | import { rimraf } from "rimraf" |
| | |
| | | import { filterContent } from "./processors/filter" |
| | | import { emitContent } from "./processors/emit" |
| | | import cfg from "../quartz.config" |
| | | import { FilePath } from "./path" |
| | | |
| | | interface Argv { |
| | | directory: string |
| | |
| | | }) |
| | | console.log(`Found ${fps.length} input files from \`${argv.directory}\` in ${perf.timeSince('glob')}`) |
| | | |
| | | const filePaths = fps.map(fp => `${argv.directory}${path.sep}${fp}`) |
| | | const filePaths = fps.map(fp => `${argv.directory}${path.sep}${fp}` as FilePath) |
| | | const parsedFiles = await parseMarkdown(cfg.plugins.transformers, argv.directory, filePaths, argv.verbose) |
| | | const filteredContent = filterContent(cfg.plugins.filters, parsedFiles, argv.verbose) |
| | | await emitContent(argv.directory, output, cfg, filteredContent, argv.verbose) |
| | |
| | | |
| | | if (argv.serve) { |
| | | const server = http.createServer(async (req, res) => { |
| | | let status = 200 |
| | | const result = await serveHandler(req, res, { |
| | | await serveHandler(req, res, { |
| | | public: output, |
| | | directoryListing: false, |
| | | }, { |
| | | async sendError() { |
| | | status = 404 |
| | | }, |
| | | }) |
| | | const status = res.statusCode |
| | | const statusString = status === 200 ? chalk.green(`[${status}]`) : chalk.red(`[${status}]`) |
| | | console.log(statusString + chalk.grey(` ${req.url}`)) |
| | | return result |
| | | }) |
| | | server.listen(argv.port) |
| | | console.log(`Started a Quartz server listening at http://localhost:${argv.port}`) |
| | | console.log(chalk.cyan(`Started a Quartz server listening at http://localhost:${argv.port}`)) |
| | | console.log('hint: exit with ctrl+c') |
| | | } |
| | | } |