-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
45 lines (36 loc) · 1.17 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
// Load plugins
const gulp = require("gulp");
// Copy third party libraries from /node_modules into /vendor
gulp.task('vendor', function(cb) {
// Start Bootstrap Clean Blog SCSS
gulp.src([
'./node_modules/startbootstrap-clean-blog/scss/**/*'
])
.pipe(gulp.dest('./assets/vendor/startbootstrap-clean-blog/scss'))
// Start Bootstrap Clean Blog JS
gulp.src([
'./node_modules/startbootstrap-clean-blog/js/clean-blog.min.js',
'./node_modules/startbootstrap-clean-blog/js/jqBootstrapValidation.js'
])
.pipe(gulp.dest('./assets/vendor/startbootstrap-clean-blog/js'))
// Bootstrap
gulp.src([
'./node_modules/bootstrap/dist/**/*',
'!./node_modules/bootstrap/dist/css/bootstrap-grid*',
'!./node_modules/bootstrap/dist/css/bootstrap-reboot*'
])
.pipe(gulp.dest('./assets/vendor/bootstrap'))
// jQuery
gulp.src([
'./node_modules/jquery/dist/*',
'!./node_modules/jquery/dist/core.js'
])
.pipe(gulp.dest('./assets/vendor/jquery'))
// Font Awesome
gulp.src([
'./node_modules/@fortawesome/**/*',
])
.pipe(gulp.dest('./assets/vendor'))
cb();
});
gulp.task("default", gulp.parallel('vendor'));