-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
25 lines (22 loc) · 835 Bytes
/
gulpfile.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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.config.sourcemaps = false;
elixir(function(mix) {
mix.sass("backend/backend.scss")
.scripts([
"vendor/jQuery/jquery-2.1.3.min.js",
"vendor/datepicker/bootstrap-sass-datepicker.js",
"vendor/priceformat/jquery.price_format.min.js",
"backend.js"
],
"public/js/backend.js", 'resources/assets/js');
});