forked from mmanzano/gotta-shit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
19 lines (17 loc) · 852 Bytes
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 Less
| file for our application, as well as publishing vendor resources.
|
*/
elixir(function(mix) {
mix.sass('pokemonbuddy.scss', 'public/css/pokemonbuddy.css')
.scripts(['jquery.min.js', 'analytics.js', 'nearest.js', 'hover.js', 'place_experience.js', 'menu_experience.js', 'rate.js', 'helpers.js'], 'public/js/pokemonbuddy.js')
.scripts(['place_field.js'], 'public/js/pokemonbuddy_place_field.js')
.scripts(['place.js'], 'public/js/pokemonbuddy_place.js');
});