我有/source/sass/skin1_settings.scss
其中包含来自 的导入/vendors/foundation/
,该样式的一些特定设置和app.scss
. 我希望我的 node.JS 直接编译成/skin/skin1/css/app.css
,我该怎么做?
注意:这与第二种风格相同。
我正在使用node-sass-middleware以便将 node-sass 与 Express 一起使用。
app.use(
sass({
src: [sass_folder],
dest: [css_folder],
debug: true,
})
);
这是我的树结构,谢谢。
./
+--vendors/ <-- Third-party libs from external vendors
+--jquery/
+--foundation/
+--angularjs/
+--modernizr/
+--source/
+--sass/ <-- custom stylesheet (not present on the prod server)
+--skin1_settings.scss
+--skin2_settings.scss
+--app.scss
+--skin/
+--skin1/
+--img/ <-- imported images (..@2x, ..@3x)
+--css/ <-- generated stysheet
+--skin2/
+--img/ <-- imported images (..@2x, ..@3x)
+--css/ <-- generated stysheet
+--html/ <-- HTML Mockups
+--...