-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
48 lines (46 loc) · 1.4 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
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('app.scss')
.publish(
'jquery/dist/jquery.min.js',
'public/js/vendor/jquery.min.js'
)
.publish(
'jquery/dist/jquery.min.map',
'public/js/vendor/jquery.min.map'
)
.publish(
'bootstrap-sass-official/assets/javascripts/bootstrap.min.js',
'public/js/vendor/bootstrap.min.js'
)
.publish(
'angular/angular.min.js',
'public/js/vendor/angular.min.js'
)
.publish(
'angular/angular.min.js.map',
'public/js/vendor/angular.min.js.map'
)
.publish(
'typed.js/js/typed.js',
'public/js/vendor/typed.js'
)
.publish(
'bootstrap-sass-official/assets/fonts',
'public/fonts'
)
.publish(
'bootbox/bootbox.js',
'public/js/vendor/bootbox.js'
);
});