hi everybody! I’m using a small gulp task as external pipeline. But I got two problems:
-
How to use the asset_hash? With <%= stylesheet_link_tag ‘all’ %> it’s not including the hash at the end. How to get that working?
-
Don’t know why but everytime I run middleman build it generates a “all” file and a “all.css” in my stylesheets directory. second is right, but the first one is file with a thrown error:
/*
Error: File to import not found or unreadable: susy.
on line 1 of /Users/matthiasfanger/workspace/fngr2911.github.io/source/stylesheets/all.scss
1: @import 'susy';
2: @import 'reset';
3: @import 'placeholder';
4: @import 'variables';
5: @import 'style';
6: @import 'syntax';
Backtrace:
/Users/matthiasfanger/workspace/fngr2911.github.io/source/stylesheets/all.scss:1
why does gulp/middleman generates that file? susy is imported via npm and works find in serve mode.
thank you!