-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGulpfile.js
237 lines (209 loc) · 6.3 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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
"use strict";
// -----------------------------------------------------------------------------
// Dependencies
// -----------------------------------------------------------------------------
var gulp = require("gulp");
var data = require("gulp-data");
var sass = require("gulp-sass")(require("sass"));
var realFavicon = require("gulp-real-favicon");
var fs = require("fs");
var browserSync = require("browser-sync").create();
var nunjucksRender = require("gulp-nunjucks-render");
var dateFilter = require("nunjucks-date-filter");
var concat = require("gulp-concat");
var siteOutput = "./dist";
// -----------------------------------------------------------------------------
// Configuration
// -----------------------------------------------------------------------------
var inputMain = "./scss/main.scss";
var output = siteOutput + "/css";
var inputTemplates = "./pages/*.html";
var sassOptions = { outputStyle: "expanded" };
// File where the favicon markups are stored
var FAVICON_DATA_FILE = "faviconData.json";
// -----------------------------------------------------------------------------
// Sass compilation
// -----------------------------------------------------------------------------
function sassTask() {
return gulp
.src(inputMain)
.pipe(sass(sassOptions).on("error", sass.logError))
.pipe(gulp.dest(output))
.pipe(browserSync.stream());
}
// -----------------------------------------------------------------------------
// Javascript
// -----------------------------------------------------------------------------
function scriptsTask() {
return gulp
.src(["js/main.js"])
.pipe(concat({ path: "main.js" }))
.pipe(browserSync.reload({ stream: true }))
.pipe(gulp.dest(siteOutput + "/js"));
}
// -----------------------------------------------------------------------------
// Templating
// -----------------------------------------------------------------------------
function nunjucksTask() {
var manageEnvironment = function (environment) {
environment.addFilter("date", dateFilter);
};
const getDataForFile = function () {
const fileData = require("./data/data");
return {
...fileData,
};
};
// Gets .html and .nunjucks files in pages
return (
gulp
.src(inputTemplates)
.pipe(data(getDataForFile))
// Renders template with nunjucks
.pipe(
nunjucksRender({
path: ["./templates/"],
manageEnv: manageEnvironment,
})
)
// add favicons data
.pipe(
realFavicon.injectFaviconMarkups(
JSON.parse(fs.readFileSync(FAVICON_DATA_FILE)).favicon.html_code
)
)
// output files in dist folder
.pipe(gulp.dest(siteOutput))
);
}
// -----------------------------------------------------------------------------
// Favicon generation
// -----------------------------------------------------------------------------
// 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).
function generateFavIconTask(done) {
{
realFavicon.generateFavicon(
{
masterPicture: "assets/favicons/source/master_picture.png",
dest: "assets/favicons/dist",
iconsPath: "/",
design: {
ios: {
pictureAspect: "backgroundAndMargin",
backgroundColor: "#004853",
margin: "14%",
assets: {
ios6AndPriorIcons: false,
ios7AndLaterIcons: false,
precomposedIcons: false,
declareOnlyDefaultIcon: true,
},
},
desktopBrowser: {},
windows: {
pictureAspect: "noChange",
backgroundColor: "#2b5797",
onConflict: "override",
assets: {
windows80Ie10Tile: false,
windows10Ie11EdgeTiles: {
small: false,
medium: true,
big: false,
rectangle: false,
},
},
},
androidChrome: {
pictureAspect: "backgroundAndMargin",
margin: "17%",
backgroundColor: "#004853",
themeColor: "#004853",
manifest: {
display: "standalone",
orientation: "notSet",
onConflict: "override",
declared: true,
},
assets: {
legacyIcon: false,
lowResolutionIcons: false,
},
},
safariPinnedTab: {
pictureAspect: "silhouette",
themeColor: "#004853",
},
},
settings: {
scalingAlgorithm: "Mitchell",
errorOnImageTooSmall: false,
readmeFile: false,
htmlCodeFile: false,
usePathAsIs: false,
},
markupFile: FAVICON_DATA_FILE,
},
function () {
done();
}
);
}
}
// 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.
function checkForFaviconUpdateTask(done) {
var currentVersion = JSON.parse(fs.readFileSync(FAVICON_DATA_FILE)).version;
realFavicon.checkForUpdates(currentVersion, function (err) {
if (err) {
throw err;
}
});
}
// Copy favicons to dist folder
function copyFaviconsTask() {
return gulp.src("./assets/favicons/dist/*").pipe(gulp.dest(siteOutput));
}
// -----------------------------------------------------------------------------
// Watchers
// -----------------------------------------------------------------------------
function watchTask() {
// Watch the sass input folder for change,
// and run `sass` task when something happens
gulp.watch("./scss/*.scss", sassTask);
gulp.watch("./js/*", scriptsTask).on("change", browserSync.reload);
// Watch nunjuck templates and reload browser if change
gulp.watch(inputTemplates, nunjucksTask).on("change", browserSync.reload);
}
// -----------------------------------------------------------------------------
// Static server
// -----------------------------------------------------------------------------
function browserSyncTask() {
browserSync.init({
server: {
baseDir: siteOutput,
},
});
}
// -----------------------------------------------------------------------------
// Default task
// -----------------------------------------------------------------------------
exports.default = gulp.series(
sassTask,
nunjucksTask,
scriptsTask,
copyFaviconsTask,
browserSyncTask,
watchTask
);
exports.build = gulp.series(
sassTask,
nunjucksTask,
scriptsTask,
copyFaviconsTask
);