我正在运行哈巴狗 CLI
哈巴狗 src --out web --watch
如果我有
src/
index.pug
includes/
scripts.pug
web/
index.html (generated)
在 index.pug 中:include includes/scripts.pug
使用此设置,如果我修改 scripts.pug,它会生成我不需要的 web/includes/scripts.html,为了保持清洁,我不想这样做。
有没有办法避免某些文件/目录编译?(目前一种解决方法是包含 html 形式的内容,但也许有办法)