-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
115 lines (103 loc) · 2.89 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
// Project Specific Variables
const projectPath = './wp-content/themes/rfgen-software/';
const devPath = projectPath + '_dev';
const buildPath = projectPath + 'build';
const projectURL = 'http://local.rfgen';
// npm packages
const gulp = require('gulp');
const gulpLoadPlugins = require('gulp-load-plugins');
const cp = require("child_process");
const rename = require('gulp-rename');
const newer = require('gulp-newer');
const path = require('path');
const sass = require('gulp-sass');
const autoprefixer = require('gulp-autoprefixer');
const cleanCSS = require('gulp-clean-css');
const concat = require('gulp-concat');
const uglify = require('gulp-uglify');
const imagemin = require('gulp-imagemin');
const pngquant = require('imagemin-pngquant');
const browsersync = require("browser-sync").create();
const webpack = require("webpack");
const webpackconfig = require("./webpack.config.js");
const webpackstream = require("webpack-stream");
const del = require("del");
const $ = gulpLoadPlugins();
// BrowserSync
function browserSync() {
console.log('browser sync');
browsersync.init({
proxy: projectURL,
open: false,
injectChanges: true,
port: 3000,
files: [buildPath + '/css/*.css', buildPath + '/js/*.js', projectPath + '*.php']
});
// done();
}
// BrowserSync Reload
function browserSyncReload(done) {
browsersync.reload();
done();
}
// Clean assets
function clean() {
return del([buildPath + '/css']);
}
function css() {
console.log('Compiling CSS...');
return gulp
.src([devPath + '/scss/compile.scss'])
.pipe(rename({ basename: "main" }))
.pipe(sass({includePaths: ['node_modules/']}).on('error', sass.logError))
.pipe(autoprefixer({ cascade: false }))
//.pipe(cleanCSS())
.pipe(gulp.dest(buildPath + '/'))
.pipe(browsersync.stream());
}
function scripts() {
console.log('Scripts...');
return (
gulp
.src([devPath + '/js/main.js'])
//.pipe(plumber())
.pipe(webpackstream(webpackconfig, webpack))
//.pipe(uglify())
// folder only, filename is specified in webpack config
.pipe(gulp.dest(buildPath + '/'))
.pipe(browsersync.stream())
);
}
function images() {
return gulp
.src([devPath + '/images/**/*.{png,jpg,gif,ico,svg}'])
.pipe(newer(buildPath + '/images/'))
.pipe(imagemin({
progressive: true,
use: [pngquant()]
}))
.pipe(gulp.dest(buildPath + '/images/'))
}
function watchFiles() {
css();
scripts();
images();
gulp.watch(devPath + '/scss/**/*.scss', css);
gulp.watch(
[
"./_dev/js/**/*"
],
gulp.series(scripts, browserSyncReload)
);
gulp.watch(devPath + '/img/**/*', images);
gulp.watch(projectPath + '**/*.php', browserSyncReload);
console.log('watching...');
}
const watch = gulp.parallel(watchFiles, browserSync);
gulp.task('default', watch, images, css, scripts);
exports.css = css;
exports.scripts = scripts;
exports.images = images;
exports.clean = clean;
exports.watch = watch;
exports.watchFiles = watchFiles;