-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
29 lines (23 loc) · 753 Bytes
/
gulpfile.js
File metadata and controls
29 lines (23 loc) · 753 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
var elixir = require('laravel-elixir');
elixir.config.sourcemaps = false;
var gulp = require('gulp');
elixir(function(mix){
mix.sass([
'sass/app.scss',
], 'resources/Assets/css/app.css', 'resources/Assets');
var bowerPath = 'bower/vendor';
mix.styles([
'css/app.css',
bowerPath+'/bootstrap/dist/css/bootstrap.min.css',
], 'public/css/style.css', 'resources/Assets');
mix.scripts([
bowerPath+'/jquery/dist/jquery.min.js',
bowerPath+'/axios/dist/axios.min.js',
bowerPath+'/chart.js/dist/Chart.bundle.js',
'js/rejoy.js',
'js/global.js',
'js/admin/*.js',
'js/store/*.js',
'js/init.js'
], 'public/js/script.js', 'resources/Assets');
});