Something special.

This commit is contained in:
Taylor Otwell
2014-10-10 12:51:20 -05:00
parent 52e68f981f
commit a2dacbb0fa
2 changed files with 42 additions and 0 deletions

19
Gulpfile.js Normal file
View File

@@ -0,0 +1,19 @@
var elixir = require('./vendor/laravel/elixir/Elixir');
/*
|----------------------------------------------------------------
| Have a Drink!
|----------------------------------------------------------------
|
| Elixir provides a clean, fluent API for defining some basic
| Gulp tasks for your Laravel application. Elixir supports
| several common CSS, JavaScript and even testing tools!
|
*/
elixir(function(mix) {
mix.less("bootstrap.less")
.routes()
.events()
.phpUnit();
});