-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
31 lines (29 loc) · 1.09 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
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 Less
| file for our application, as well as publishing vendor resources.
|
*/
elixir(function(mix) {
mix.sass([
'./bower_components/font-awesome/scss/font-awesome.scss',
'./bower_components/Ionicons/scss/ionicons.scss',
'app.scss'
], 'public/css/app.css');
mix.scripts([
'./bower_components/jquery/dist/jquery.js',
'./bower_components/bootstrap-sass-official/assets/javascripts/bootstrap.js',
'./bower_components/admin-lte.scss/javascripts/app.js',
'main.js'
], 'public/js/app.js');
mix.copy([
'bower_components/bootstrap-sass-official/assets/fonts/bootstrap',
'bower_components/font-awesome/fonts',
'bower_components/Ionicons/fonts',
], 'public/fonts');
});