Uh oh!
There was an error while loading. Please reload this page.
forked from hosssha/hosssha.github.io
- Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathgulpfile.js
More file actions
Latest commit
executable file
·48 lines (40 loc) · 1.12 KB
/
Copy pathgulpfile.js
File metadata and controls
executable file
·48 lines (40 loc) · 1.12 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
vargulp=require('gulp');
varbrowserSync=require('browser-sync').create();
varpkg=require('./package.json');
// Copy third party libraries from /node_modules into /vendor
gulp.task('vendor',function(){
// Bootstrap
gulp.src([
'./node_modules/bootstrap/dist/**/*',
'!./node_modules/bootstrap/dist/css/bootstrap-grid*',
'!./node_modules/bootstrap/dist/css/bootstrap-reboot*'
])
.pipe(gulp.dest('./vendor/bootstrap'))
// jQuery
gulp.src([
'./node_modules/jquery/dist/*',
'!./node_modules/jquery/dist/core.js'
])
.pipe(gulp.dest('./vendor/jquery'))
// jQuery Easing
gulp.src([
'node_modules/jquery.easing/*.js'
])
.pipe(gulp.dest('vendor/jquery-easing'))
})
// Default task
gulp.task('default',['vendor']);
// Configure the browserSync task
gulp.task('browserSync',function(){
browserSync.init({
server: {
baseDir: "./"
}
});
});
// Dev task
gulp.task('dev',['browserSync'],function(){
gulp.watch('./css/*.css',browserSync.reload);
gulp.watch('./js/*.js',browserSync.reload);
gulp.watch('./*.html',browserSync.reload);
});