forked from mindprokz/shaider
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
203 lines (160 loc) · 5.33 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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
'use strict'
// все что относиться к самому галпу
const gulp = require('gulp');
const rename = require('gulp-rename');
// все что относиться к html
const pug = require('gulp-jade');
// все что относиться к css
const minifyCss = require('gulp-minify-css');
const sass = require('gulp-sass');
const autoprefixer = require('gulp-autoprefixer');
// Все что относиться к js
const uglify = require('gulp-uglify');
const babel = require('gulp-babel');
const webpackStream = require('webpack-stream');
const webpack = webpackStream.webpack;
const jshint = require('gulp-jshint');
// Все что относиться к изображениям
const imagemin = require('gulp-imagemin');
const pngquant = require('imagemin-pngquant');
// Браузер синк и модуль для копирования директорий
const bs = require("browser-sync").create();
const ncp = require('ncp').ncp;
// Переменная окружения заданная по умолчанию
let env = process.env.NODE_ENV === 'build' ? 'build' : 'develop';
// Если это разработка запустить сервер
gulp.task('server', () => {
// Если переменная окружения задана, то делаем сборку под продакшн
if (env === 'develop') {
bs.init({
//server : `./_compile/${env}/`,
proxy: 'localhost/_compile/develop'
})
}
return;
});
// Настройки для вебпака
let webpackOptions = {
entry: './_sources/js/index.js',
module: {
loaders: [{
test: /\.js$/,
loader: 'babel?presets[]=es2015'
}]
}
}
// Конструктор для создания пути для исходных файлов и скомпилированных файлов
class CreatePath {
constructor (from, to) {
this.from = __dirname + from;
this.to = to === undefined ? __dirname + `/_compile/${env}/` : __dirname + to;
}
}
// Пути для всех основных файлов
let jsPath = new CreatePath('/_sources/js/index.js');
let libsPath = new CreatePath('/_extra/libs');
let scssPath = new CreatePath('/_sources/scss/style.scss');
let jadePath = new CreatePath('/_sources/jade/*.jade');
let imagesPath = new CreatePath('/_sources/image/imageFromProd/**/*', `/_compile/${env}/images/`);
// опции для синтаксиса js
let optionForJshint = {
// these directives can
// be found in the official
// JSLint documentation.
evil: true,
curly : true,
eqeqeq : true,
newcap : true,
plusplus : false,
browser : true,
esnext: true,
// you can also set global
// declarations for all source
// files like so:
predef: ['$'],
// both ways will achieve the
// same result; predef will be
// given priority because it is
// promoted by JSLint
}
// task для компиляции jade шаблонов
gulp.task('jade', () => {
gulp.src(jadePath.from)
.pipe(pug({ pretty: true }))
.pipe(rename(function (path) {
path.extname = ".php"
}))
.pipe(gulp.dest(jadePath.to));
bs.reload();
});
// @TODO поискать css lint
// task для компиляции scss стилей
gulp.task('scss', () => {
let _files = gulp.src(scssPath.from);
if (process.env.NODE_ENV !== 'build') {
_files.pipe(sass().on('error', sass.logError))
.pipe(rename('style.css'))
.pipe(gulp.dest(scssPath.to));
bs.reload();
} else {
_files.pipe(sass().on('error', sass.logError))
.pipe(autoprefixer('last 5 version'))
.pipe(minifyCss())
.pipe(rename('style.css'))
.pipe(gulp.dest(scssPath.to));
}
});
gulp.task('images', () => {
gulp.src(imagesPath.from)
.pipe(imagemin({
progressive: true,
svgoPlugins: [{removeViewBox: false}],
use: [pngquant()]
}))
.pipe(gulp.dest(imagesPath.to));
});
// task for JS
gulp.task('js', () => {
let _files = gulp.src(jsPath.from);
if (process.env.NODE_ENV !== 'build') {
_files.pipe(jshint(optionForJshint))
.pipe(jshint.reporter('default'))
.pipe(webpackStream(webpackOptions))
.pipe(rename('bundle.js'))
.pipe(gulp.dest(jsPath.to));
bs.reload();
} else {
_files.pipe(jshint(optionForJshint))
.pipe(jshint.reporter('default'))
.pipe(webpackStream(webpackOptions))
.pipe(uglify())
.pipe(rename('bundle.min.js'))
.pipe(gulp.dest(jsPath.to));
}
});
// @TODO оставлять только нужные файлы через плагин bower
// Таск для переноса библиотек в готовую сборку
gulp.task('libsCompile', () => {
ncp(libsPath.from, libsPath.to, function (err) {
if (err) {
return console.error(err);
}
});
});
//taks for watch change files
gulp.task('watch', () => {
// Ватчеры для .jade файлов
gulp.watch(jadePath.from, ['jade']);
gulp.watch(__dirname + '/_sources/jade/sections/*.jade', ['jade']);
// Ватчеры для .scss файлов
gulp.watch(scssPath.from, ['scss']);
gulp.watch(__dirname + '/_sources/scss/sections/*.scss', ['scss']);
// Ватчер для .js файлов
gulp.watch(__dirname + '/_sources/js/*.js', ['js']);
});
// default task
if (env === 'develop') {
gulp.task('default', ['jade', 'scss', 'js', 'server', 'watch' ]);
} else {
gulp.task('default', ['jade', 'scss', 'js', 'images', 'libsCompile']);
}