-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
executable file
·42 lines (32 loc) · 1.06 KB
/
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
39
40
41
42
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.
|
*/
// OBSERVAÇÃO: para gerar os mimes: gulp --production
elixir(function(mix) {
mix.styles([
'bootstrap.min.css',
'font-awesome.min.css',
'prettyPhoto.css',
'animate.css',
'main.css',
'responsive.css',
], 'public/css/all.css');
mix.scripts([
'jquery.js',
'bootstrap.min.js',
'jquery.scrollUp.min.js',
'price-range.js',
'jquery.prettyPhoto.js',
'main.js',
], 'public/js/all.js');
mix.version(['css/all.css', 'js/all.js']);
mix.copy('resources/assets/fonts', 'public/build/fonts');
});