-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
215 lines (198 loc) · 5.42 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
214
215
'use strict';
var gulp = require('gulp');
var sass = require('gulp-sass');
var autoprefixer = require('gulp-autoprefixer');
var cleanCSS = require('gulp-clean-css');
var sassLint = require('gulp-sass-lint');
var uglify = require('gulp-uglify');
var jshint = require('gulp-jshint');
var stylish = require('jshint-stylish');
var rename = require('gulp-rename');
var sourcemaps = require('gulp-sourcemaps');
var pump = require('pump');
var browserSync = require('browser-sync').create();
var child = require('child_process');
var gutil = require('gulp-util');
var realFavicon = require ('gulp-real-favicon');
var validator = require('gulp-html');
var fs = require('fs');
gulp.task('sass', (cb) => {
pump([
gulp.src('scss/**/*.scss'),
sassLint(),
sassLint.format(),
sassLint.failOnError(),
sourcemaps.init(),
sass({includePaths: [
'bower_components/foundation-sites/scss',
'bower_components/foundation-icon-fonts'
]}).on('error', sass.logError),
autoprefixer({browsers: ['last 2 versions', 'ie >= 9', 'and_chr >= 2.3']}),
cleanCSS(),
rename({suffix: '.min'}),
sourcemaps.write('.'),
gulp.dest('assets/css')
],
cb
);
});
gulp.task('copy-fonts', (cb) => {
pump([
gulp.src('bower_components/foundation-icon-fonts/*.{eot,svg,ttf,woff}'),
gulp.dest('assets/fonts/foundation-icons')
],
cb
);
});
gulp.task('vendor-js', (cb) => {
pump([
gulp.src([
'bower_components/jquery/dist/jquery.min.js',
'bower_components/what-input/dist/what-input.min.js',
'bower_components/foundation-sites/dist/js/foundation.min.js',
'bower_components/svg-injector/dist/svg-injector.min.js'
]),
gulp.dest('assets/js/vendor')
],
cb
);
});
gulp.task('js', (cb) => {
pump([
gulp.src('js/*.js'),
jshint(),
jshint.reporter(stylish),
sourcemaps.init(),
uglify(),
rename({suffix: '.min'}),
sourcemaps.write('.'),
gulp.dest('assets/js')
],
cb
);
});
gulp.task('html', (cb) => {
pump([
gulp.src('_site/**/*.html'),
validator({
format: 'text',
exitZeroAlways: true
})
],
cb
);
});
gulp.task('jekyll', () => {
const jekyll = child.spawn('bundle', ['exec', 'jekyll', 'build',
'--watch',
'--incremental',
'--drafts'
]);
const jekyllLogger = (buffer) => {
buffer.toString()
.split(/\n/)
.forEach((message) => gutil.log('Jekyll: ' + message));
};
jekyll.stdout.on('data', jekyllLogger);
jekyll.stderr.on('data', jekyllLogger);
});
gulp.task('serve', ['copy-fonts', 'sass', 'vendor-js', 'js', 'jekyll', 'html'], () => {
browserSync.init({
files: ['_site/**'],
port: 4000,
server: {
baseDir: '_site'
}
});
gulp.watch('scss/**/*.scss', ['sass']);
gulp.watch('js/*.js', ['js']);
gulp.watch('_site/**/*.html', ['html']);
});
gulp.task('default', ['copy-fonts', 'sass', 'vendor-js', 'js', 'html']);
// File where the favicon markups are stored
var FAVICON_DATA_FILE = 'faviconData.json';
// Generate the icons. This task takes a few seconds to complete.
// You should run it at least once to create the icons. Then,
// you should run it whenever RealFaviconGenerator updates its
// package (see the check-for-favicon-update task below).
gulp.task('generate-favicon', function(done) {
realFavicon.generateFavicon({
masterPicture: 'assets/images/favicon-master.png',
dest: '.',
iconsPath: '/',
design: {
ios: {
pictureAspect: 'noChange',
assets: {
ios6AndPriorIcons: false,
ios7AndLaterIcons: false,
precomposedIcons: false,
declareOnlyDefaultIcon: true
}
},
desktopBrowser: {},
windows: {
pictureAspect: 'noChange',
backgroundColor: '#9f00a7',
onConflict: 'override',
assets: {
windows80Ie10Tile: false,
windows10Ie11EdgeTiles: {
small: false,
medium: true,
big: false,
rectangle: false
}
}
},
androidChrome: {
pictureAspect: 'noChange',
themeColor: '#009cde',
manifest: {
name: 'Ticketmaster Innovation',
display: 'browser',
orientation: 'notSet',
onConflict: 'override',
declared: true
},
assets: {
legacyIcon: false,
lowResolutionIcons: false
}
},
safariPinnedTab: {
pictureAspect: 'blackAndWhite',
threshold: 80,
themeColor: '#009cde'
}
},
settings: {
compression: 5,
scalingAlgorithm: 'Lanczos',
errorOnImageTooSmall: false
},
markupFile: FAVICON_DATA_FILE
}, function() {
done();
});
});
// Inject the favicon markups in your HTML pages. You should run
// this task whenever you modify a page. You can keep this task
// as is or refactor your existing HTML pipeline.
gulp.task('inject-favicon-markups', function() {
return gulp.src(['_layouts/default.html'])
.pipe(realFavicon.injectFaviconMarkups(JSON.parse(fs.readFileSync(FAVICON_DATA_FILE)).favicon.html_code))
.pipe(gulp.dest('_layouts'));
});
// Check for updates on RealFaviconGenerator (think: Apple has just
// released a new Touch icon along with the latest version of iOS).
// Run this task from time to time. Ideally, make it part of your
// continuous integration system.
gulp.task('check-for-favicon-update', function(done) {
var currentVersion = JSON.parse(fs.readFileSync(FAVICON_DATA_FILE)).version;
realFavicon.checkForUpdates(currentVersion, function(err) {
if (err) {
throw err;
}
});
});