-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
44 lines (33 loc) · 968 Bytes
/
gulpfile.js
File metadata and controls
44 lines (33 loc) · 968 Bytes
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
const elixir = require('laravel-elixir');
require('laravel-elixir-vue');
/*
|--------------------------------------------------------------------------
| 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.
|
*/
// original
/*elixir(mix => {
mix.sass('app.scss')
.webpack('app.js');
});*/
/*elixir(mix => {
mix.webpack('app.js');
});*/
/*elixir(function(mix) {
mix.styles([
"yamm.css",
], 'Assets/css/theme-bundle.css', 'Assets/css');
mix.scripts([
"jquery-2.1.4.min.js",
], 'Assets/js/theme-bundle.js', 'Assets/js');
mix.scripts([
"html5shiv.js",
"respond.min.js"
], 'Assets/js/shiv-bundle.js', 'Assets/js');
});
*/