-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathgulpfile.js
More file actions
34 lines (31 loc) · 984 Bytes
/
gulpfile.js
File metadata and controls
34 lines (31 loc) · 984 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
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');
mix.styles([
'bootstrap.css',
'bootstrap-adaptive-tabs.css',
'jquery.datetimeentry.css',
'jquery-ui.css',
'select2.css',
'style.css'
],null,'public/css');
mix.scripts([
'jquery.js',
'jquery.plugin.js',
'jquery-ui.js',
'bootstrap.js',
'jquery.datetimeentry.js',
'select2.js'
],null,'public/js');
mix.version(['public/css/all.css','public/js/all.js'],'public');
});