| | |
| | | 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 |
| | | verbose: boolean |
| | | output: string |
| | | clean: boolean |
| | | serve: boolean |
| | | port: number |
| | | } |
| | |
| | | |
| | | const pluginCount = Object.values(cfg.plugins).flat().length |
| | | const pluginNames = (key: 'transformers' | 'filters' | 'emitters') => cfg.plugins[key].map(plugin => plugin.name) |
| | | console.log(`Loaded ${pluginCount} plugins`) |
| | | if (argv.verbose) { |
| | | console.log(`Loaded ${pluginCount} plugins`) |
| | | console.log(` Transformers: ${pluginNames('transformers').join(", ")}`) |
| | | console.log(` Filters: ${pluginNames('filters').join(", ")}`) |
| | | console.log(` Emitters: ${pluginNames('emitters').join(", ")}`) |
| | | } |
| | | |
| | | // clean |
| | | if (argv.clean) { |
| | | perf.addEvent('clean') |
| | | await rimraf(output) |
| | | console.log(`Cleaned output directory \`${output}\` in ${perf.timeSince('clean')}`) |
| | | } |
| | | perf.addEvent('clean') |
| | | await rimraf(output) |
| | | console.log(`Cleaned output directory \`${output}\` in ${perf.timeSince('clean')}`) |
| | | |
| | | // glob |
| | | perf.addEvent('glob') |
| | |
| | | ignore: cfg.configuration.ignorePatterns, |
| | | gitignore: true, |
| | | }) |
| | | console.log(`Found ${fps.length} input files in ${perf.timeSince('glob')}`) |
| | | 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) => { |
| | | return serveHandler(req, res, { |
| | | await serveHandler(req, res, { |
| | | public: output, |
| | | directoryListing: false |
| | | directoryListing: false, |
| | | }) |
| | | const status = res.statusCode |
| | | const statusString = status === 200 ? chalk.green(`[${status}]`) : chalk.red(`[${status}]`) |
| | | console.log(statusString + chalk.grey(` ${req.url}`)) |
| | | }) |
| | | 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') |
| | | } |
| | | } |