-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
58 lines (46 loc) · 1.32 KB
/
gulpfile.js
File metadata and controls
58 lines (46 loc) · 1.32 KB
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
57
58
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.styles([
"font-awesome-animation.min.css",
"font-awesome.min.css",
"yamm.css",
"select2.css",
"select2-bootstrap.css",
"jquery.growl.css",
"dataTables.bootstrap.css"
], 'Assets/css/theme-bundle.css', 'Assets/css');
mix.scripts([
"lodash.js",
"jquery-3.2.1.js", //"jquery-2.2.4.js",
"vue-2.0.js",
"bootstrap.js",
"jquery.hotkeys.min.js",
"jquery.dataTables.1.10.7.min.js",
"jquery.dataTables.bootstrap.js",
"jquery.growl.js",
"dataTables.js",
"select2.js",
"prism.js",
], 'Assets/js/theme-bundle.js', 'Assets/js');
mix.scripts([
"html5shiv.js",
"respond.min.js"
], 'Assets/js/shiv-bundle.js', 'Assets/js');
});
/*
{
"devDependencies": {
"laravel-elixir": "*"
}
}
*/