-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgulpfile.js
122 lines (106 loc) · 3.78 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
////////////////////////////////
//Setup//
////////////////////////////////
// Plugins
var gulp = require('gulp'),
pjson = require('./package.json'),
sass = require('gulp-sass'),
autoprefixer = require('gulp-autoprefixer'),
cssnano = require('gulp-cssnano'),
concat = require('gulp-concat'),
rename = require('gulp-rename'),
plumber = require('gulp-plumber'),
uglify = require('gulp-uglify'),
imagemin = require('gulp-imagemin'),
browserSync = require('browser-sync').create(),
reload = browserSync.reload;
// Relative paths function
var pathsConfig = function (appName) {
this.app = "./" + (appName || pjson.name);
var vendorsRoot = 'node_modules/';
return {
vendorsJs: [
vendorsRoot + 'jquery/dist/jquery.js',
vendorsRoot + 'toastr/build/toastr.min.js',
vendorsRoot + 'bootstrap/dist/js/bootstrap.js',
vendorsRoot + 'chart.js/dist/Chart.js',
vendorsRoot + 'chartjs-plugin-colorschemes/dist/chartjs-plugin-colorschemes.js',
vendorsRoot + 'ace-builds/src/ace.js'
],
vendorsFonts: [
vendorsRoot + '@fortawesome/fontawesome-free/webfonts/*'
],
app: this.app,
templates: this.app + '/templates',
css: this.app + '/static/css',
sass: this.app + '/static/sass',
fonts: this.app + '/static/fonts',
images: this.app + '/static/images',
js: this.app + '/static/js'
}
};
var paths = pathsConfig();
////////////////////////////////
//Tasks//
////////////////////////////////
// Styles autoprefixing and minification
gulp.task('styles', function () {
return gulp.src(paths.sass + '/project.scss')
.pipe(sass().on('error', sass.logError))
.pipe(plumber()) // Checks for errors
.pipe(autoprefixer({browsers: ['last 2 versions']})) // Adds vendor prefixes
.pipe(gulp.dest(paths.css))
.pipe(rename({suffix: '.min'}))
.pipe(cssnano()) // Minifies the result
.pipe(gulp.dest(paths.css));
});
// Javascript minification
gulp.task('scripts', function () {
return gulp.src(paths.js + '/project.js')
.pipe(plumber()) // Checks for errors
.pipe(uglify()) // Minifies the js
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest(paths.js));
});
// Vendor Javascript minification
gulp.task('vendor-scripts', function () {
return gulp.src(paths.vendorsJs)
.pipe(concat('vendors.js'))
.pipe(gulp.dest(paths.js))
.pipe(plumber()) // Checks for errors
.pipe(uglify()) // Minifies the js
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest(paths.js));
});
// Font Collection
gulp.task('fontCollection', function () {
return gulp.src(paths.vendorsFonts)
.pipe(gulp.dest(paths.fonts))
});
// Image compression
gulp.task('imgCompression', function () {
return gulp.src(paths.images + '/*')
.pipe(imagemin()) // Compresses PNG, JPEG, GIF and SVG images
.pipe(gulp.dest(paths.images))
});
// Browser sync server for live reload
gulp.task('browserSync', function () {
browserSync.init(
[paths.css + "/*.css", paths.js + "*.js", paths.templates + '*.html'], {
proxy: {target: "localhost:8000", ws:true}
});
});
// Watch
gulp.task('watch', function () {
gulp.watch(paths.sass + '/*.scss', gulp.series('styles'));
gulp.watch(paths.js + '/*.js', gulp.series('scripts')).on("change", reload);
gulp.watch(paths.images + '/*', gulp.series('imgCompression'));
gulp.watch(paths.templates + '*.html').on("change", reload);
});
gulp.task('build',
gulp.parallel('styles', 'scripts', 'vendor-scripts', 'imgCompression', 'fontCollection')
);
// Default task
gulp.task('default',
gulp.series('build', gulp.parallel('watch', 'browserSync'))
);