Meteor:按特定顺序加载scss文件

时间:2015-06-16 05:10:02

标签: meteor sass

我想知道如何在使用Meteor时按顺序加载scss文件。

不使用Meteor,我会按顺序制作application.scss并加载.scss文件,以便以后加载的样式表可以依赖于之前加载的mixins /变量。然后我在我的模板中加载application.scss

application.scss

@import 'bourbon/bourbon'
@import 'colors' // where I define color variables

...

// import other stylesheets that depend on `bourbon` and `colors`

但我无法做到这一点,因为Meteor会以未指定的顺序自动加载所有样式表。

我尝试将bourboncolors置于client/lib内,以便首先加载它们,但我无法在其他样式表中使用其中定义的mixins /变量。< / p>

有什么建议吗?

1 个答案:

答案 0 :(得分:1)

你走了:

https://github.com/fourseven/meteor-scss

SCSS用户非常受欢迎且积极管理的软件包。