为什么grunt-contrib-compass有javascriptsDir参数?

时间:2014-03-03 22:36:19

标签: sass gruntjs

grunt-contrib-compass中有一个JavascriptsDir参数。

但是文档对这个参数的用法并不清楚。

它用于什么?

1 个答案:

答案 0 :(得分:4)

grunt-contrib-compass是一个很好的桥梁,允许你使用带有咕噜声的Compass(一个红宝石项目)。 javascriptsDir对应于指南针选项javascripts_dir

指南针实际上并没有使用javascripts_dir选项本身,但可以选择使用指南针扩展。这样你就不会得到多个扩展,所有扩展都需要知道你的javascript文件在哪里都使用不同的选项名称。

Here's the explanation straight from one of the Compass developers.