forked from magento/devdocs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
gulpfile.js
213 lines (182 loc) · 5.11 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
204
205
206
207
208
209
210
211
212
213
//
// Gulp
// _____________________________________________
//
// Requires
// ---------------------------------------------
var gulp = require('gulp'),
gutil = require('gulp-util'),
shell = require('gulp-shell');
concat = require('gulp-concat'),
uglify = require('gulp-uglify'),
sass = require('gulp-sass'),
imagemin = require('gulp-imagemin'),
sourcemaps = require('gulp-sourcemaps'),
compass = require('gulp-compass'),
autoprefixer = require('gulp-autoprefixer'),
minifycss = require('gulp-minify-css'),
rename = require('gulp-rename'),
del = require('del'),
include = require('gulp-include'),
jekyll = require('gulp-jekyll'),
spawn = require('child_process').spawn,
exec = require('child_process').exec,
consolidate = require('gulp-consolidate'),
browsersync = require('browser-sync'),
reload = browsersync.reload,
//
// Paths
// ---------------------------------------------
paths = {
icons: 'icons/*.svg',
html: [
'guides/**/*.{html,md}',
'_includes/**/*.html',
'_layouts/**/*.html',
'_videos/**/*',
'css/**/*.css',
'*.html'
],
styles: 'scss/**/*.scss',
scripts: [
'js/**/*.js',
'!js/_vendor/**/*.js',
'!js/_includes/**/*.js'
],
images: 'i/**/*',
fonts: 'font/**/*',
},
destHtml = '_site/',
destJS = 'common/js/',
destImg = '_site/i/',
destCSS = 'css/',
destFonts = '_site/font/',
destIcons = '_site/font/icons/',
// BrowserSync config
bsconfig = {
server: {
baseDir: destHtml
},
notify: false,
port: 9999,
files: [
paths.scripts,
paths.images
]
};
//
// Tasks
// ---------------------------------------------
// Not all tasks need to use streams
// A gulpfile is just another node program and you can use all packages available on npm
// Delete
gulp.task('clean', function (cb) {
// You can use multiple globbing patterns as you would with `gulp.src`
del(['build'], cb);
});
// Move some static files
gulp.task('move', function() {
gulp.src(paths.fonts)
.pipe( gulp.dest(destFonts) );
});
// Scripts
gulp.task('scripts', function () {
// Minify and copy all JavaScript (except vendor scripts)
// with sourcemaps all the way down
//gulp.src('js/vendor/**/*').pipe(gulp.dest(destJS + 'vendor/'));
return gulp.src(paths.scripts)
.pipe(sourcemaps.init())
.pipe(include())
.pipe(uglify())
//.pipe(concat('app.min.js'))
// .pipe(sourcemaps.write())
.pipe(rename({suffix: '.min'}))
.pipe(gulp.dest(destJS))
.pipe(gulp.dest( destHtml + 'common/js/' ))
.on('error', gutil.log);
// .pipe(reload({stream: true}));
});
// Images
gulp.task('images', ['clean'], function () {
return gulp.src(paths.images)
.pipe(imagemin({optimizationLevel: 5}))
.pipe(gulp.dest(destImg))
.on('error', gutil.log);
//.pipe(livereload(server));
});
// Styles
gulp.task('styles', function () {
gulp.src(paths.styles)
.pipe(sourcemaps.init())
.pipe(sass({
outputStyle: 'compressed'
}))
.on('error', gutil.log)
.pipe(autoprefixer({
browsers: ['last 3 versions'],
cascade: false
}))
.on('error', gutil.log)
//.pipe(sourcemaps.write())
.pipe(gulp.dest(destCSS))
.pipe(reload({stream: true}));
});
// Compile html files. Use _config.yml
gulp.task('jekyll', function (gulpCallBack) {
var jekyll = spawn('bundle', ['exec','jekyll','build'], {stdio: 'inherit'});
jekyll.on('error', function (error) {
console.log(error.toString());
this.emit('end');
});
jekyll.on('close', function () {
browsersync.reload();
gulpCallBack();
});
});
gulp.task('browser-sync', function () {
browsersync(bsconfig);
});
// Rerun the task when a file changes
gulp.task('watch', function () {
browsersync(bsconfig);
gulp.watch(paths.html, ['jekyll']);
gulp.watch(paths.scripts, ['scripts']);
gulp.watch(paths.images, ['images']);
gulp.watch(paths.styles, ['styles']);
});
// The default task (called when you run `gulp` from cli)
gulp.task('default',
[
'move',
'scripts',
'images',
'styles',
'watch'
]
);
/*
*********************
* Local development *
*********************
*/
// Compile HTML, watch files for changes, and only recompile files that change; not the entire site:
gulp.task('build', shell.task(['jekyll build --watch --incremental --verbose']));
// Start a local webserver and launch the site in a browser.
gulp.task('serve', function () {
browsersync.init({
port: 4000,
open: true,
// Defines time window to minimize reloading of pages when multiple changes occur almost simultaneously.
reloadThrottle: 500,
reloadDebounce: 500,
server: {
baseDir: '_site/'
}
});
// Auto refresh the browser whenever a file in the _site directory changes, but give jekyll some time to generate the output before reloading:
setTimeout(function () {
gulp.watch('_site/**/*.*').on('change', browsersync.reload);
}, 5000);
});
// Local development task
gulp.task('dev', ['build', 'serve'], function () {});