Skip to content
This repository has been archived by the owner on Apr 23, 2019. It is now read-only.

Commit

Permalink
FEBUILD-2 process all SASS files that don't start with an underscore
Browse files Browse the repository at this point in the history
Enables the generation of multiple CSS files if needed.
  • Loading branch information
Mathijs den Burger committed Mar 21, 2016
1 parent 70f6914 commit b0db95c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.conf.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ function buildConfig(customConfig) {

cfg.src = {};
cfg.src.styles = `${cfg.srcDir}/styles/**/*.scss`;
cfg.src.indexStyles = `${cfg.srcDir}/styles/${cfg.projectName}.scss`;
cfg.src.indexStyles = `${cfg.srcDir}/styles/[!_]*.scss`;
cfg.src.images = `${cfg.srcDir}/images/**/*.{png,jpg,gif,ico,svg}`;
cfg.src.fonts = `${cfg.srcDir}/fonts/**/*`;
cfg.src.indexScript = `${cfg.srcDir}/angularjs/${cfg.projectName}.js`;
Expand Down

0 comments on commit b0db95c

Please sign in to comment.