-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
56 lines (50 loc) · 1.45 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
var elixir = require('laravel-elixir');
require('laravel-elixir-imagemin');
/*
|--------------------------------------------------------------------------
| 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.
|
*/
// require('laravel-elixir-spritesmith');
// elixir(function(mix) {
// mix.spritesmith('resources/assets/img', {
// imgOutput: 'public/assets/img',
// cssOutput: 'resources/assets/css'
// });
// });
elixir.config.images = {
folder: 'img',
outputFolder: 'assets/img'
};
elixir(function(mix) {
mix.styles([
'vocomfest.css',
'timeline.css',
'custom.css'],'public/assets/css/vocomfest.css'
);
mix.styles([
'bootstrap.css',
'custom-styles.css',
'font-awesome.css',
'dataTables.bootstrap.css'],'public/assets/css/admin.css'
);
mix.scripts([
'jquery.js',
'vocomfest.js',
'modernizr.js',
'main.js'], 'public/assets/js/vocomfest.js'
);
mix.scripts([
'jquery.js',
'bootstrap.min.js',
'jquery.metisMenu.js',
'jquery.dataTables.js',
'dataTables.bootstrap.js'], 'public/assets/js/admin.js'
);
mix.imagemin();
});