Created
March 30, 2015 17:32
-
-
Save onbjerg/56de02de2c25866b40da to your computer and use it in GitHub Desktop.
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') | |
.coffee() | |
.phpSpec(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment