Skip to content

Commit 818035a

Browse files
author
Hannu Pelkonen
committed
Fix: Styles are no longer added twice in the demo project. Fixes Firefox icon font problem
1 parent fe22333 commit 818035a

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

gulpfile.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ gulp.task('bower', function() {
9898
});
9999

100100
gulp.task('sass', function() {
101-
return gulp.src('lib/app/sass/**/*.scss')
101+
return gulp.src('lib/app/sass/app.scss')
102102
.pipe(plumber())
103103
.pipe(sass({
104104
// Include bourbon & neat

lib/app/styleguide_config.json

+8-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
11
{
22
"title": "SC5 Styleguide",
33
"overviewPath": "overview.md",
4-
"styleVariables": "sass/_styleguide_variables.scss"
4+
"styleVariables": "sass/_styleguide_variables.scss",
5+
"sass": {
6+
"src": "lib/app/sass/app.scss",
7+
"includePaths": [
8+
"node_modules/node-bourbon/assets/stylesheets",
9+
"node_modules/node-neat/assets/stylesheets"
10+
]
11+
}
512
}

0 commit comments

Comments
 (0)