forked from chinchang/web-maker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgulpfile.js
More file actions
444 lines (394 loc) · 11.7 KB
/
gulpfile.js
File metadata and controls
444 lines (394 loc) · 11.7 KB
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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
/*eslint-env node*/
const fs = require('fs');
const gulp = require('gulp');
const { parallel, series, watch } = require('gulp');
const useref = require('gulp-useref');
const cleanCSS = require('gulp-clean-css');
const rename = require('gulp-rename');
const concat = require('gulp-concat');
const babelMinify = require('babel-minify');
const child_process = require('child_process');
const merge = require('merge-stream');
// const zip = require('gulp-zip');
var packageJson = JSON.parse(fs.readFileSync('./package.json'));
const connect = require('gulp-connect');
const APP_FOLDER = 'create';
function minifyJs(fileName) {
const content = fs.readFileSync(fileName, 'utf8');
const minifiedContent = babelMinify(
content,
{ mangle: content.length < 700000 },
{ sourceMaps: false }
).code;
fs.writeFileSync(fileName, minifiedContent);
console.log(
`[${fileName}]: ${content.length / 1024}K -> ${
minifiedContent.length / 1024
}K`
);
}
function runWebpack() {
return child_process.exec('npm run build', (error, stdout, stderr) => {
console.log('runWebpack', error, stdout, stderr);
});
}
gulp.task('runWebpack', function () {
return child_process.exec('npm run build', (error, stdout, stderr) => {
console.log('runWebpack', error, stdout, stderr);
});
});
gulp.task('copyFiles', function () {
return merge(
gulp
.src('src/lib/codemirror/theme/*')
.pipe(gulp.dest(`${APP_FOLDER}/lib/codemirror/theme`)),
gulp
.src('src/lib/codemirror/mode/**/*')
.pipe(gulp.dest(`${APP_FOLDER}/lib/codemirror/mode`)),
gulp
.src('src/lib/transpilers/*')
.pipe(gulp.dest(`${APP_FOLDER}/lib/transpilers`)),
gulp
.src('src/lib/prettier-worker.js')
.pipe(gulp.dest(`${APP_FOLDER}/lib/`)),
gulp
.src('src/lib/prettier/*')
.pipe(gulp.dest(`${APP_FOLDER}/lib/prettier`)),
gulp
.src(['!src/lib/monaco/monaco.bundle.js', 'src/lib/monaco/**/*'])
.pipe(gulp.dest(`${APP_FOLDER}/lib/monaco`)),
gulp.src('src/lib/screenlog.js').pipe(gulp.dest(`${APP_FOLDER}/lib`)),
gulp.src('icons/*').pipe(gulp.dest(`${APP_FOLDER}/icons`)),
gulp.src('src/assets/*').pipe(gulp.dest(`${APP_FOLDER}/assets`)),
gulp.src('src/templates/*').pipe(gulp.dest(`${APP_FOLDER}/templates`)),
gulp.src('preview/*').pipe(gulp.dest(`${APP_FOLDER}/preview`)),
gulp
.src([
'src/preview.html',
'src/indexpm.html',
'src/detached-window.js',
'src/icon-48.png',
'src/icon-128.png',
'src/manifest.json'
])
.pipe(gulp.dest(APP_FOLDER)),
gulp.src('build/*').pipe(gulp.dest(APP_FOLDER)),
// Following CSS are copied to build/ folder where they'll be referenced by
// useRef plugin to concat into one.
gulp
.src('src/lib/codemirror/lib/codemirror.css')
.pipe(gulp.dest(`build/lib/codemirror/lib`)),
gulp
.src('src/lib/codemirror/addon/hint/show-hint.css')
.pipe(gulp.dest(`build/lib/codemirror/addon/hint`)),
gulp
.src('src/lib/codemirror/addon/fold/foldgutter.css')
.pipe(gulp.dest(`build/lib/codemirror/addon/fold`)),
gulp
.src('src/lib/codemirror/addon/dialog/dialog.css')
.pipe(gulp.dest(`build/lib/codemirror/addon/dialog`)),
gulp.src('src/lib/hint.min.css').pipe(gulp.dest('build/lib')),
gulp.src('src/lib/inlet.css').pipe(gulp.dest('build/lib')),
// gulp.src('src/style.css').pipe(gulp.dest('build')),
gulp
.src([
'src/FiraCode.ttf',
'src/FixedSys.ttf',
'src/Inconsolata.ttf',
'src/Monoid.ttf'
])
.pipe(gulp.dest(APP_FOLDER))
);
});
gulp.task('useRef', function () {
return gulp
.src('build/index.html')
.pipe(useref())
.pipe(gulp.dest(APP_FOLDER));
});
gulp.task('concatSwRegistration', function () {
const bundleFile = fs
.readdirSync(APP_FOLDER)
.filter(allFilesPaths => allFilesPaths.match(/bundle.*\.js$/) !== null)[0];
console.log('matched', bundleFile);
return gulp
.src(['src/service-worker-registration.js', `${APP_FOLDER}/${bundleFile}`])
.pipe(concat(bundleFile))
.pipe(gulp.dest(APP_FOLDER));
});
gulp.task('minify', function () {
// minifyJs('app/script.js');
// minifyJs('app/vendor.js');
minifyJs(`${APP_FOLDER}/lib/screenlog.js`);
return gulp
.src(`${APP_FOLDER}/*.css`)
.pipe(
cleanCSS(
{
debug: true
},
details => {
console.log(
`${details.name}: ${details.stats.originalSize} 👉🏼 ${details.stats.minifiedSize}`
);
}
)
)
.pipe(gulp.dest(APP_FOLDER));
});
gulp.task('fixIndex', function (cb) {
var contents = fs.readFileSync('build/index.html', 'utf8');
// Replace hashed-filename script tags with unhashed ones
contents = contents.replace(
/\<\!\-\- SCRIPT-TAGS \-\-\>[\S\s]*?\<\!\-\- END-SCRIPT-TAGS \-\-\>/,
'<script defer src="vendor.js"></script><script defer src="script.js"></script>'
);
// vendor.hash.js gets created outside our markers, so remove it
contents = contents.replace(
/\<script src="[\S\s]*?vendor\.[\S\s]*?\<\/script\>/,
''
);
// fs.writeFileSync('build/index.html', contents, 'utf8');
cb();
});
gulp.task('generate-service-worker', function (callback) {
var swPrecache = require('sw-precache');
var rootDir = APP_FOLDER;
swPrecache.write(
`${rootDir}/service-worker.js`,
{
staticFileGlobs: [
rootDir + '/**/*.{js,html,css,png,jpg,gif,svg,eot,ttf,woff}'
],
stripPrefix: `${rootDir}/`,
// has to be increased to around 2.8mb for sass.worker.js
maximumFileSizeToCacheInBytes: 2900000
},
callback
);
});
/**
* This task generates a service worker for the preview domain (inside iframe).
* It first generates a precaching worker using sw-precache, then adds custom
* code to handle the virtual filesystem for files mode
*/
gulp.task('generate-preview-service-worker', function (callback) {
var swPrecache = require('sw-precache');
var rootDir = `${APP_FOLDER}/preview`;
// First generate the base service worker with sw-precache
swPrecache.write(
`${rootDir}/service-worker.js`,
{
staticFileGlobs: [
rootDir + '/**/*.{js,html,htm,css,png,jpg,gif,svg,eot,ttf,woff}'
],
stripPrefix: `${rootDir}/`,
maximumFileSizeToCacheInBytes: 29000,
clientsClaim: true
},
function (error) {
if (error) {
callback(error);
return;
}
// Read the generated service worker
var swContent = fs.readFileSync(`${rootDir}/service-worker.js`, 'utf8');
// Remove index.html from precacheConfig - it's a placeholder that gets replaced by user's files
swContent = swContent.replace(/\["index\.html",[^\]]+\],?/g, '');
const pattern =
/self\.addEventListener\(\s*['"]fetch['"]\s*,\s*function\s*\(([^)]*)\)\s*\{([\s\S]*?)^\}\s*\);/m;
swContent = swContent.replace(pattern, function (match, args, body) {
return `function fetchHandler(${args}) {${body}\n}`;
});
// Add our custom code after the generated code
var customCode = `
// Custom code for handling message events and caching
const CACHE_NAME = 'webmaker-vfiles';
function getContentType(url) {
if (url.match(/\\.html$/)) {
return 'text/html; charset=UTF-8';
} else if (url.match(/\\.css$/)) {
return 'text/css; charset=UTF-8';
} else if (url.match(/\\.js$/)) {
return 'application/javascript; charset=UTF-8';
} else if (url.match(/\\.json$/)) {
return 'application/json; charset=UTF-8';
}
return 'text/html; charset=UTF-8';
}
self.addEventListener('message', function(e) {
if (!e.data) return;
caches.open(CACHE_NAME).then(function(cache) {
for (const url in e.data) {
if (Object.prototype.hasOwnProperty.call(e.data, url)) {
const response = new Response(e.data[url], {
headers: {
'Content-Type': getContentType(url)
}
});
cache.put(url, response);
}
}
});
});
self.addEventListener('fetch', function(event) {
//console.log('fetch event', event.request.url, event.request);
// First, remove all the ignored parameters and hash fragment, and see if we
// have that URL in our cache. If so, great! shouldRespond will be true.
var url = stripIgnoredUrlParameters(event.request.url, ignoreUrlParametersMatching);
const isAppFile = urlsToCacheKeys.has(url);
if(isAppFile){
return fetchHandler(event);
}
event.respondWith(
caches.open(CACHE_NAME).then(function(cache) {
return cache
.match(event.request)
.then(response => {
// console.log('responding with ', response);
if (response !== undefined) {
return response;
}
return fetch(event.request);
})
.catch(function(e) {
// Fall back to just fetch()ing the request if some unexpected error
// prevented the cached response from being valid.
console.warn(
'Could not serve response for "%s" from cache: %O',
event.request.url,
e
);
return fetch(event.request);
});
})
);
});
`;
// Append our custom code to the generated service worker
swContent += customCode;
// Write the final service worker file
fs.writeFileSync(`${rootDir}/service-worker.js`, swContent, 'utf8');
callback();
}
);
});
gulp.task('packageExtension', function () {
child_process.execSync('rm -rf extension');
child_process.execSync(`cp -R ${APP_FOLDER} extension`);
child_process.execSync('cp src/manifest.json extension');
child_process.execSync('cp src/options.js extension');
child_process.execSync('cp src/options.html extension');
child_process.execSync('cp src/eventPage.js extension');
child_process.execSync('cp src/icon-16.png extension');
child_process.execSync('cp offscreen.html extension');
child_process.execSync('cp offscreen.js extension');
child_process.execSync('rm -rf extension/service-worker.js');
return merge(
gulp
.src('build/bundle.*.js')
.pipe(rename('script.js'))
.pipe(gulp.dest('extension'))
// gulp
// .src('extension/**/*')
// .pipe(zip(`extension-${packageJson.version}.zip`))
// .pipe(gulp.dest('./'))
);
});
gulp.task('buildWebsite', function () {
return child_process.exec(
'npm run build-website',
(error, stdout, stderr) => {
console.log('buildWebsite', error, stdout, stderr);
}
);
});
gulp.task('buildDistFolder', function (cb) {
child_process.execSync('rm -rf dist');
child_process.execSync('mv packages/website/_site dist');
child_process.execSync(`mv ${APP_FOLDER} dist/`);
child_process.execSync(`mkdir dist/signup`);
child_process.execSync(`cp packages/signup/dist/*.* dist/signup/`);
cb();
});
gulp.task('cleanup', function () {
return child_process.exec('rm -rf build create');
});
gulp.task('start-preview-server', function () {
connect.server({
root: 'preview',
port: 7888,
https: false
});
});
// TODO: fix tasks. eg. buildWebsite isn't needed anymore
exports.release = series(
parallel('runWebpack', 'buildWebsite'),
'copyFiles',
'fixIndex',
'useRef',
'concatSwRegistration',
'minify',
'generate-service-worker',
'generate-preview-service-worker',
'packageExtension',
'buildDistFolder',
'cleanup',
function (callback, error) {
if (error) {
console.log(error.message);
} else {
console.log('RELEASE FINISHED SUCCESSFULLY');
}
callback(error);
}
);
exports.devRelease = gulp.series(
parallel('runWebpack', 'buildWebsite'),
'copyFiles',
'fixIndex',
'useRef',
// 'concatSwRegistration',
// 'generate-service-worker',
'buildDistFolder',
'cleanup',
function (callback, error) {
if (error) {
console.log(error.message);
} else {
console.log('DEV-RELEASE FINISHED SUCCESSFULLY');
}
callback(error);
}
);
const buildExtension = series(
'runWebpack',
'copyFiles',
'fixIndex',
'useRef',
'packageExtension',
'cleanup'
);
function runWatcher(cb) {
return watch(
['src/**/*.js', 'src/**/*.jsx', 'src/**/*.json'],
function (cbb) {
buildExtension();
cbb();
}
);
cb();
}
exports.setupExtension = series(
buildExtension,
runWatcher,
function (callback, error) {
if (error) {
console.log(error.message);
} else {
console.log('RELEASE FINISHED SUCCESSFULLY');
}
callback(error);
}
);
exports.buildExtension = buildExtension;