-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathgulpfile.js
27 lines (25 loc) · 900 Bytes
/
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
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.styles([
'../../../node_modules/sweetalert/dist/sweetalert.css'
]);
mix.scripts([
'../../../node_modules/vue/dist/vue.js',
'../../../node_modules/vue-resource/dist/vue-resource.js',
'../../../node_modules/vue-router/dist/vue-router.js',
'../../../node_modules/sweetalert/dist/sweetalert-dev.js',
'main.js',
'flash.js',
'showError.js',
]);
});