The Trans Directory
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

feat: -v flag should log exact error on parse failure

+4 -1
+4 -1
quartz/build.ts
··· 148 148 await rimraf(argv.output) 149 149 await emitContent(ctx, filteredContent) 150 150 console.log(chalk.green(`Done rebuilding in ${perf.timeSince()}`)) 151 - } catch { 151 + } catch (err) { 152 152 console.log(chalk.yellow(`Rebuild failed. Waiting on a change to fix the error...`)) 153 + if (argv.verbose) { 154 + console.log(chalk.red(err)) 155 + } 153 156 } 154 157 155 158 release()