forked from appkr/l5code
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
40 lines (32 loc) · 1.13 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
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.
|
*/
elixir(mix => {
mix.sass('app.scss');
mix.webpack('app.js');
mix.scripts([
'../../../node_modules/highlightjs/highlight.pack.js',
'../../../public/js/app.js',
'../../../node_modules/select2/dist/js/select2.js',
'../../../node_modules/dropzone/dist/dropzone.js',
'../../../node_modules/marked/lib/marked.js',
'../../../node_modules/jquery-tabby/jquery.textarea.js',
'../../../node_modules/autosize/dist/autosize.js',
'forum.js'
], 'public/js/app.js');
mix.version([
'css/app.css',
'js/app.js'
]);
// mix.copy('node_modules/font-awesome/fonts', 'public/build/fonts');
// mix.browserSync({proxy: 'localhost:8000'});
});