DOCPAD如何排除文件被推入外部文件夹

时间:2013-10-24 12:07:37

标签: docpad

示例:我在config.rb

下有一个src/files/config.rb - 文件

如何将docpad推送的此文件排除在out/config.rb

之外

例如,在jekyll中是否有配置文件的exclude-command? exclude: makelive.sh, ideas.txt, newpost.rb

1 个答案:

答案 0 :(得分:4)

您可以使用各种ignore* configuration options来完成您的需要。

从表面上看,ignorePaths似乎是最简单的解决方案,如果你只有一个或两个你不想要包含的文件,但事实上,它似乎是基于绝对路径运行的,很不方便。所以我可能会使用ignoreCustomPatterns选项来指定与您不想复制的文件匹配的正则表达式。

# Ignore Custom Patterns
# Can be set to a regex of custom patterns to ignore from the scanning process
ignoreCustomPatterns: /config.rb/