This template is great! I'm a big fan of SASS and am using Laravel's exlixer with browser sync to compile and run my development. I need to know if there is a specific order that the SASS files need to be in. Obviously variables & mixins should go to the top, but I'm unsure about the order in the other files.
Your documentation is great but would be perfect IMO if you had more specifics on the order of compiling LESS and SASS.
elixir(function(mix) {
mix
.sass([
'variables.scss',
'mixins.scss',
'dark.scss',
'blog.scss',
'layouts.scss',
'content.scss',
'events.scss',
'extras.scss',
'footer.scss',
'header.scss',
'helpers.scss',
'pagetitle.scss',
'portfolio.scss',
'responsive.scss',
'shop.scss',
'shortcodes',
'shortcodes.scss',
'sliders.scss',
'topbar.scss',
'typography.scss',
'widgets.scss',
'shortcodes/blog.scss',
'shortcodes/content.scss',
'shortcodes/dark.scss',
'shortcodes/events.scss',
'shortcodes/extras.scss',
'shortcodes/footer.scss',
'shortcodes/header.scss',
'shortcodes/helpers.scss',
'shortcodes/layouts.scss',
'shortcodes/mixins.scss',
'shortcodes/pagetitle.scss',
'shortcodes/portfolio.scss',
'shortcodes/responsive.scss',
'shortcodes/shop.scss',
'shortcodes/shortcodes',
'shortcodes/shortcodes.scss',
'shortcodes/sliders.scss',
'shortcodes/topbar.scss',
'shortcodes/typography.scss',
'shortcodes/variables.scss',
'shortcodes/widgets.scss'
], 'public/assets/css/app.css')
});