Created
October 27, 2015 21:53
-
-
Save mstaack/afe0c1c544a898f6f3e0 to your computer and use it in GitHub Desktop.
demo gulpfile
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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