From a2dacbb0faa21ca6364d09eccf52fecc22bfaa9a Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Fri, 10 Oct 2014 12:51:20 -0500 Subject: [PATCH] Something special. --- Gulpfile.js | 19 +++++++++++++++++++ package.json | 23 +++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 Gulpfile.js create mode 100644 package.json diff --git a/Gulpfile.js b/Gulpfile.js new file mode 100644 index 00000000..b74ef9d9 --- /dev/null +++ b/Gulpfile.js @@ -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(); +}); diff --git a/package.json b/package.json new file mode 100644 index 00000000..fab4d929 --- /dev/null +++ b/package.json @@ -0,0 +1,23 @@ +{ + "devDependencies": { + "del": "^0.1.3", + "gulp": "^3.8.8", + "gulp-autoprefixer": "^1.0.1", + "gulp-coffee": "^2.2.0", + "gulp-concat": "^2.4.1", + "gulp-less": "^1.3.6", + "gulp-load-plugins": "^0.7.0", + "gulp-minify-css": "^0.3.10", + "gulp-notify": "^1.8.0", + "gulp-phpspec": "^0.3.0", + "gulp-phpunit": "^0.6.3", + "gulp-rev": "^1.1.0", + "gulp-sass": "^1.1.0", + "gulp-shell": "^0.2.9", + "gulp-uglify": "^1.0.1", + "install": "^0.1.7", + "npm": "^2.1.2", + "require-dir": "^0.1.0", + "underscore": "^1.7.0" + } +}