Skip to content

Instantly share code, notes, and snippets.

@mstaack
Created October 27, 2015 21:53
Show Gist options
  • Save mstaack/afe0c1c544a898f6f3e0 to your computer and use it in GitHub Desktop.
Save mstaack/afe0c1c544a898f6f3e0 to your computer and use it in GitHub Desktop.
demo gulpfile
var elixir = require('laravel-elixir');
/*
|--------------------------------------------------------------------------
| Elixir Asset Management
|--------------------------------------------------------------------------
|
| Elixir provides a clean, fluent API for defining some basic Gulp tasks
| for your Laravel application. By default, we are compiling the Sass
| file for our application, as well as publishing vendor resources.
|
*/
elixir(function (mix) {
mix.sass('app.scss', 'resources/assets/css');
mix.styles([
'libs/bootstrap.min.css',
'libs/select2.min.css',
'app.css'
]);
mix.scripts([
'libs/jquery.min.js',
'libs/bootstrap.min.js',
'libs/select2.min.js',
'libs/bootbox.min.js',
'libs/bootstrap-validator.min.js',
'app.js'
])
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment