Skip to content

Instantly share code, notes, and snippets.

@indiealexh
Created June 4, 2015 18:30
Show Gist options
  • Save indiealexh/c774c4e4a2898accda05 to your computer and use it in GitHub Desktop.
Save indiealexh/c774c4e4a2898accda05 to your computer and use it in GitHub Desktop.
var elixir = require('laravel-elixir');
elixir(function(mix) {
mix.copy('resources/assets/foundation/bower_components/foundation/scss', 'resources/assets/sass');
mix.copy('resources/assets/foundation/scss', 'resources/assets/sass');
mix.sass('app.scss');
mix.copy('resources/assets/foundation/bower_components/foundation/js', 'resources/assets/js');
mix.copy('resources/assets/foundation/js', 'resources/assets/js');
mix.scripts(['vendor/jquery.js', 'vendor/modernizr.js', 'foundation.js', 'app.js'], "public/js/main.js");
mix.version(["css/app.css", "js/main.js"]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment