Rename Gulpfile.js to gulpfile.js

because not Grunt.
This commit is contained in:
Ryan Winchester
2014-10-14 15:29:46 -07:00
parent 001ba10296
commit 6a9516f3b7

19
gulpfile.js Normal file
View File

@@ -0,0 +1,19 @@
var elixir = require('laravel-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.sass("bootstrap.scss")
.routes()
.events()
.phpUnit();
});