-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
30 lines (27 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
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 Sass
| file for our application, as well as publishing vendor resources.
|
*/
elixir(function(mix) {
mix.sass('app.scss')
.scripts([
'libs/sweetalert-dev.js',
'libs/lity.js'
], './public/js/libs.js')
.styles([
'libs/sweetalert.css',
'libs/dropzone.css',
'libs/lity.css'
], './public/css/libs.css');
// mix.copy('bower_components/sweetalert/dist/sweetalert-dev.js', 'resources/assets/js/libs/sweetalert-dev.js');
// mix.copy('bower_components/sweetalert/dist/sweetalert.css', 'resources/assets/css/libs/sweetalert.css');
// mix.copy('resources/assets/js/libs/dropzone.js', 'public/js/dropzone.js');
// mix.copy('resources/assets/js/libs/jquery.js', 'public/js/jquery.js');
});