-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
44 lines (36 loc) · 1.12 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
var elixir = require('laravel-elixir');
var bower = './bower_components/';
var res = './resources/assets/';
/*
|--------------------------------------------------------------------------
| 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(function(mix) {
mix
.sass([
'app.scss'
], res + 'css/app.css')
.styles([
bower + 'material-design-lite/material.min.css',
'material.deep_orange-deep_purple.min.css',
'app.css',
], 'public/css/app.css')
.scripts([
bower + 'material-design-lite/material.min.js',
'app.js',
], 'public/js/app.js')
.copy(
bower + 'material-design-icons/iconfont',
'./public/fonts'
)
.version([
'css/app.css',
'js/app.js'
]);
});