-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
38 lines (31 loc) · 974 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
26
27
28
29
30
31
32
33
34
35
36
37
38
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 Sass
| file for our application, as well as publishing vendor resources.
|
*/
elixir.config.sourcemaps = false;
elixir(function(mix) {
mix.browserSync();
mix.sass('app.scss')
.styles([
'resources/assets/css/bootstrap.css',
'resources/assets/css/clean-blog.css',
'resources/assets/css/bootstrap-datetimepicker.css',
'public/css/app.css'
], 'public/css/style.css', './');
mix.scripts([
'jquery.js',
'moment.js',
'bootstrap.js',
'bootstrap-datetimepicker.js',
'gmaps.js',
"app.js"
], 'public/js/app.js');
mix.version(['public/css/style.css', 'public/js/app.js'])
});