-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
51 lines (45 loc) · 1.51 KB
/
gulpfile.js
File metadata and controls
51 lines (45 loc) · 1.51 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
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.
|
*/
/*
./node_modules/bootstrap/scss/bootstrap.scss
./node_modules/jquery/dist/jquery.min.js
./node_modules/tether/dist/js/tether.min.js
./node_modules/bootstrap/dist/js/bootstrap.min.js
./node_modules/scrollreveal/dist/scrollreveal.min.js
./node_modules/@tweenjs/tween.js/src/Tween.js
./node_modules/waypoints/lib/jquery.waypoints.min.js
.scripts([
scrollreveal,
Tween.js,
waypoints.js,
flickity,
rellax,
], 'public/js/visuals.js')
*/
elixir(function(mix) {
mix
.sass([
'./node_modules/bootstrap/scss/bootstrap.scss',
'components.scss',
'styles.scss'
], 'public/css/styles.css')
.scripts([
'./node_modules/jquery/dist/jquery.min.js',
'./node_modules/tether/dist/js/tether.min.js',
'./node_modules/bootstrap/dist/js/bootstrap.min.js',
'angular.min.js',
'angular-static-directives.js'
], 'public/js/fundamentals.js')
.browserSync({
proxy: 'localhost:8000'
});
});