Foundation-for-Jekyll-sites / jekyll-foundation

Start your Jekyll (v3) project with Zurb Foundation for Sites (v6, sass).
MIT License
179 stars 64 forks source link

including unique assets without concantenation #59

Closed jshwlkr closed 7 years ago

jshwlkr commented 7 years ago

I'm trying to include per-post js/css/scss via the front matter (like so https://mattgemmell.com/page-specific-assets-with-jekyll/) and I'm not sure the best method to keep the files from being compiled into the app.css and all.js but still have them copied into the _site directory. I'm assuming it's not by messing around with how the vendor folder is handled. (Even better if I could still get any unique assets compiled and minified.)

core77 commented 7 years ago

What if you use a new folder called assets/css_unique for this?

For SCSS compiling I would add a separate gulp task to handle these files.

jshwlkr commented 7 years ago

Ah! Yes. This approximates what I need. Thanks.