示例:我在config.rb
src/files/config.rb
- 文件
如何将docpad推送的此文件排除在out/config.rb
例如,在jekyll中是否有配置文件的exclude-command? exclude: makelive.sh, ideas.txt, newpost.rb
答案 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/