forked from predix-ui/predix-ui.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
/
gulpfile.js
696 lines (613 loc) · 25 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
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
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
'use strict';
/*******************************************************************************
* PREDIX UI CATALOG BUILD TOOLS
*
* The following gulp tasks are available for this project:
*
* - `gulp serve` - Run when developing the project. Continuously builds *.scss
* files to the css/ directory. Runs BrowserSync to reload the
* page whenever a file is changed.
*
* - `gulp build` - Run before releasing a new version of the project to
* production. Builds *.scss files to the css/ directory,
* processes _*.html files (minify, etc.) into
* *.html files.
******************************************************************************/
const fs = require('fs');
const path = require('path');
const gulp = require('gulp');
const pkg = require('./package.json');
const $ = require('gulp-load-plugins')();
const gulpSequence = require('gulp-sequence');
const importOnce = require('node-sass-import-once');
const stylemod = require('gulp-style-modules');
const browserSync = require('browser-sync').create();
const gulpif = require('gulp-if');
const combiner = require('stream-combiner2');
const bump = require('gulp-bump');
const argv = require('yargs').argv;
const rename = require('gulp-rename');
const symlink = require("gulp-sym");
const chmod = require('gulp-chmod');
const stream = require('merge-stream')();
const del = require('del');
const gitSync = require('gulp-git');
const execSync = require('child_process').execSync;
var request = require('request');
const imagemin = require("imagemin");
const webp = require("imagemin-webp");
const upng = require('imagemin-upng');
const optipng = require('imagemin-optipng');
const glob = require("glob");
const fse = require('fs-extra');
const md = require('./scripts/page-builder');
const {Analyzer, FSUrlLoader, generateAnalysis} = require('polymer-analyzer');
const createComponentsInfo = require('./scripts/json-builder/create-components-info.js');
const createPagesFilter = require('./scripts/json-builder/create-pages-filter.js');
const exec = require('child_process').exec;
/*******************************************************************************
* SETTINGS
*
* Configuration settings for various libraries used to process source files.
* Read the documentation for each library for more information on what
* specific configuration flags do.
******************************************************************************/
const sassOptions = {
importer: importOnce,
importOnce: {
index: true,
bower: true
}
};
const browserSyncOptions = {
port: 8080,
notify: false,
reloadOnRestart: true,
logPrefix: `${pkg.name}`,
https: false,
files: ['*.*'],
server: ['./', 'bower_components'],
reloadDebounce: 1000
};
var src = ['index.html', 'favicon.ico', 'manifest.json', 'pages/**/*.html', 'elements/**/*.{html,json}', 'service-worker.js', 'type/**/*.*', 'bower_components/**/*.*', 'img/**/*.*', 'css/**/*.*', 'CNAME', 'sw.tmpl'];
/*******************************************************************************
* BASIC UTILITIES
*
* Tasks and functions used across tasks to accomplish simple things.
******************************************************************************/
function handleError(err){
console.log(err.toString());
this.emit('end');
}
/*******************************************************************************
* SASS BUILD PIPELINE
*
* Builds the *.scss files to the css/ directory. Runs appropriate preprocessing
* and postprocessing to turn files in to style modules, etc.
******************************************************************************/
function buildCSS(){
return combiner.obj([
$.sass(sassOptions),
$.autoprefixer({
browsers: ['last 2 versions'],
cascade: false,
flexbox: false
}),
gulpif(!argv.debug, $.cssmin())
])
.on('error', handleError);
}
gulp.task('sass', function() {
return gulp.src(['./sass/*.scss'])
.pipe(buildCSS())
.pipe(stylemod({
moduleId: function(file) {
return path.basename(file.path, path.extname(file.path)) + '-styles';
}
}))
.pipe(gulp.dest('css'))
.pipe(browserSync.stream({match: 'css/*.html'}));
});
gulp.task('sass:clean', function() {
return gulp.src(['.tmp', 'css'], {
read: false
})
.pipe($.clean());
});
/*******************************************************************************
* VERSION BUMP PIPELINE
*
* Run the appropriate `gulp bump:*` command to update project verion numbers in
* bower.json and package.json manifest files before release.
******************************************************************************/
gulp.task('bump:patch', function(){
gulp.src(['./bower.json', './package.json'])
.pipe(bump({type:'patch'}))
.pipe(gulp.dest('./'));
});
gulp.task('bump:minor', function(){
gulp.src(['./bower.json', './package.json'])
.pipe(bump({type:'minor'}))
.pipe(gulp.dest('./'));
});
gulp.task('bump:major', function(){
gulp.src(['./bower.json', './package.json'])
.pipe(bump({type:'major'}))
.pipe(gulp.dest('./'));
});
/*******************************************************************************
* DEVELOPMENT SERVE PIPELINE
*
* Run `gulp serve` during development to continuously process files and reload
* the browser when files are updated.
******************************************************************************/
gulp.task('serve', ['sass', 'docs', 'generate-api'], function() {
browserSync.init(browserSyncOptions);
gulp.watch(['_pages/**/*.md', '_pages/**/*.html', 'elements/px-catalog/pages.json'], ['docs']);
gulp.watch(['sass/*.scss'], ['sass']);
gulp.watch(['css/*-styles.html', '*.html', 'pages/**/*.html']).on('change', browserSync.reload);
});
gulp.task('serve:serverless', ['sass', 'docs', 'generate-api'], function() {
gulp.watch(['_pages/**/*.md', '_pages/**/*.html', 'elements/px-catalog/pages.json'], ['docs']);
gulp.watch(['sass/*.scss'], ['sass']);
});
gulp.task('serve:sass', ['sass'], function() {
gulp.watch(['sass/*.scss'], ['sass']);
});
gulp.task('default', function(callback) {
console.log(`
!!! DEFAULT GULP TASK HAS CHANGED
Previously, running \`gulp\` on the predix-ui.github.io repo would create a
local build of the site in the dist/ folder that looked like the production
version TravisCI builds. This task no longer does this. Run \`gulp localBuild\`
if you want to perform this task.
This task now does the following:
* compiles the sass/ files to css/
* builds the _pages/ files to the pages/ directory
* re-generates the service worker
And... you probably want to run \`gulp serve\` instead of this task. :)
`);
gulpSequence('sass', 'docs', 'generate-api', 'generate-service-worker')(callback);
});
/*******************************************************************************
* GIT PRODUCTION BUILD PIPELINE
*
* this task creates an orphan git branch, and does a git add/commit/push
******************************************************************************/
gulp.task('gitStuff', function() {
var commit = execSync(`git rev-parse HEAD`, {encoding:'utf8'}).trim();
gitSync.checkout('master',{args : '--orphan', cwd : '.'}, (err) => {
if (err) {
console.log('git checkout error:' + err);
}
console.log('finished checkout successfully');
//set the source to our working directory and exclude node_modules
execSync(`rm -f .gitignore`);
execSync(`touch .gitignore`);
const gitIgnore = [
'node_modules/',
'caddyfile',
'cert.crt',
'cert.key',
'HISTORY.md',
'LICENSE.md',
'README.md',
'bower.json',
'gulpfile.js',
'id_rsa.enc',
'package.json',
'sass/*.*',
'yarn.lock',
'bower_components/leaflet/docs/*',
'/_*/'];
gitIgnore.forEach((val) =>{
execSync(`echo "${val}" >> .gitignore`);
});
execSync(`git add --all`);
execSync(`git commit -m '[TravisCI] Rebuilding master for commit ${commit||'???'}'`);
execSync(`git push origin master --force`);
});
});
//Gets the api data from github
// gulp.task('gitRepos', function(cb) {
// request({
// uri: 'https://api.github.com/teams/1779164/repos?per_page=100&page=1',
// method: 'GET',
// headers: {
// "User-Agent" : "predix-ui.github.io"
// }
// }, function(err, res, body) {
// fs.writeFile('_pages/component-gallery/repo-data.json', res.body, cb);
// });
// });
gulp.task('resetCloudflareCache', function() {
var cloudflare_zone_identifier = process.env.cloudflare_zone_identifier,
cloudflare = process.env.cloudflare;
request({
uri: 'https://api.cloudflare.com/client/v4/zones/' + cloudflare_zone_identifier + '/purge_cache',
method:'DELETE',
headers: {
"X-Auth-Email" : "martin.wragg@ge.com",
"X-Auth-Key" : cloudflare,
"Content-Type" : "application/json"
},
body: '{"purge_everything" :true}'
}, function(err, res, body) {
if (err) {
console.log(err);
} else {
console.log(res.body);
}
});
});
function flattenObject(ob){
var toReturn = [];
for (var i in ob) {
if (!ob.hasOwnProperty(i)) continue;
if ((typeof ob[i]) == 'object') {
var flatObject = flattenObject(ob[i]);
for (var x in flatObject) {
if (!flatObject.hasOwnProperty(x)) continue;
toReturn = toReturn.concat(flatObject[x]);
}
} else {
if (i === 'entrypoint' && ob[i].includes('bower_components')){
toReturn.push(ob[i].replace('/bower_components', 'bower_components'));
}
}
}
return toReturn;
};
gulp.task('polymerBuild', function (cb) {
const routes = flattenObject(require('./elements/px-catalog/pages.json'));
var buildConf = require('./polymer.json');
buildConf.fragments = routes;
fs.writeFileSync('polymer.json', JSON.stringify(buildConf, null, 2));
exec('node_modules/.bin/polymer build', function (err, stdout, stderr) {
console.log(stdout);
console.log(stderr);
fse.copySync('bower_components/pxd3/d3.min.js', 'build/default/bower_components/pxd3/d3.min.js');
fse.copySync('bower_components/px-demo-snippet/px-demo-snippet.html', 'build/default/bower_components/px-demo-snippet/px-demo-snippet.html');
fse.copySync('bower_components/px-app-helpers/px-app-header/demo.html', 'build/default/bower_components/px-app-helpers/px-app-header/demo.html');
cb(err);
});
});
/*******************************************************************************
* LOCAL BUILD PIPELINE
*
* Run `gulp` or `gulp localBuild` to emulate files for dist folder locally.
******************************************************************************/
gulp.task('localBuild', function(callback) {
gulpSequence('sass', 'docs', 'generate-api', 'gallery-json', 'generate-service-worker', 'polymerBuild')(callback);
});
/*******************************************************************************
* PRODUCTION BUILD PIPELINE
*
* Run `gulp` or `gulp prodBuild` to prepare files for production before releasing
* a new version of the project.
******************************************************************************/
gulp.task('prodBuild', function(callback) {
gulpSequence('sass', 'docs', 'generate-api', 'polymerBuild', 'cleanRoot', 'moveBuildToRoot', 'cleanBuild', 'generate-service-worker', 'gitStuff', 'resetCloudflareCache')(callback);
});
/*******************************************************************************
* ARE WE INSIDE TRAVIS?
*
* checks if we are inside the travis VM by testing the process.env.TRAVIS
*
******************************************************************************/
var isTravis = function() {
return process.env.IS_TRAVIS && process.env.IS_TRAVIS.toString() === "true";
};
gulp.task('cleanRoot', function () {
return del([
'**',
'!gulpfile.js',
'!package.json',
'!build/**',
'!scripts/**',
'!node_modules/**'
]);
});
gulp.task('cleanBuild', function () {
return del([
'build/'
]);
});
gulp.task('moveBuildToRoot', function () {
return gulp.src("build/default/**/*")
.pipe(gulp.dest('.'));
});
/*******************************************************************************
* SERVICE WORKER
*
* Builds (or rebuilds) a service worker to cache files on the site's app shell.
* Rebuilding the service worker invalidates the user's cache on the next
* visit to the site ensuring they get new files.
******************************************************************************/
gulp.task('generate-service-worker', function(callback) {
var swPrecache = require('sw-precache'),
rootDir = '.' ;
console.log("isTravis = " + isTravis() );
swPrecache.write(path.join(rootDir, '/service-worker.js'), {
staticFileGlobs: [rootDir + '/index.html',
rootDir + '/',
rootDir + '!/service-worker-registration.js',
rootDir + '/manifest.json',
rootDir + '/img/**',
rootDir + '/type/**',
rootDir + '/pages/**',
rootDir + '/elements/**/*.{html,json}',
rootDir + '/css/*.html',
rootDir + '/bower_components/px-theme/**/*.html',
rootDir + '/bower_components/app-layout/app-drawer/app-drawer.html',
rootDir + '/bower_components/app-localize-behavior/app-localize-behavior.html',
rootDir + '/bower_components/iron-media-query/iron-media-query.html',
rootDir + '/bower_components/px-alert-message/**/*.html',
rootDir + '/bower_components/px-alert-label/**/*.html',
rootDir + '/bower_components/px-dark-theme/**/*.html',
rootDir + '/bower_components/iron-form-element-behavior/iron-form-element-behavior.html',
rootDir + '/bower_components/iron-validatable-behavior/iron-validatable-behavior.html',
rootDir + '/bower_components/iron-pages/iron-pages.html',
rootDir + '/bower_components/intl-messageformat/dist/intl-messageformat.min.js',
rootDir + '/bower_components/px-dark-demo-theme/**/*.html',
rootDir + '/bower_components/px-demo/*.{html, png}',
rootDir + '/bower_components/px-demo/css/*.html',
rootDir + '/bower_components/px-spinner/**/*.html',
rootDir + '/bower_components/polymer/polymer*.html',
rootDir + '/bower_components/webcomponentsjs/webcomponents-lite.js',
rootDir + '/bower_components/webcomponentsjs/webcomponents-lite.min.js',
rootDir + '/bower_components/app-route/app-*.html',
rootDir + '/bower_components/iron-ajax/iron-*.html',
rootDir + '/bower_components/iron-location/iron-*.html',
rootDir + '/bower_components/iron-selector/iron-*.html',
rootDir + '/bower_components/iron-collapse/iron-collapse.html',
rootDir + '/bower_components/iron-label/iron-label.html',
rootDir + '/bower_components/iron-checked-element-behavior/iron-checked-element-behavior.html',
rootDir + '/bower_components/iron-iconset-svg/iron-iconset-svg.html',
rootDir + '/bower_components/iron-icon/iron-icon.html',
rootDir + '/bower_components/iron-meta/iron-meta.html',
rootDir + '/bower_components/promise-polyfill/promise-polyfill-lite.html',
rootDir + '/bower_components/promise-polyfill/Promise.js',
rootDir + '/bower_components/iron-flex-layout/iron-flex-layout.html',
rootDir + '/bower_components/iron-resizable-behavior/iron-resizable-behavior.html',
rootDir + '/bower_components/px-icon-set/*.html',
rootDir + '/bower_components/px-demo/monogram-wdmk.png',
rootDir + '/bower_components/px-toggle/**/*.{html,js}'],
stripPrefix: rootDir,
maximumFileSizeToCacheInBytes: 6000000, //this needed so hydrolysis is cached...
// templateFilePath: rootDir + '/sw.tmpl',
navigateFallback: '/index.html',
navigateFallbackWhitelist: ['/index.html']
}, callback);
});
gulp.task('compress-images', function(){
console.log("compress-image will take a couple of minutes to complete");
let imgFolders = [
'./img',
'./pages/guides/vis-resources',
'./img/component-gallery',
'./_pages/develop/vis/vis-resources',
'./img/gallery',
'./img/guidelines',
'./img/home-page',
'./pages/migration/img'
];
imgFolders.forEach((folder) =>{
imagemin([`img/component-gallery/*.png`], `img/component-gallery`, {
plugins: [
upng({ cnum: 64 }), // reduce to 64 bit-depth
]
});
imagemin([`${folder}/*.png`], folder, {
plugins: [
webp({ lossless: true }), // Losslessly encode images
optipng() //png optimizer
]
});
imagemin([`${folder}/*.jpg`], folder, {
plugins: [webp({
quality: 65 // Quality setting from 0 to 100
})]
});
});
});
function readFile(filePath) {
return new Promise((resolve, reject) => {
fs.readFile(filePath, 'utf8', (err, contents) => {
if (err) reject(err);
resolve(contents);
});
});
};
function buildMdFile(filePath) {
const srcFilePath = path.join(__dirname, filePath);
const destFilePath = path.join(__dirname, filePath.replace(/^\_pages/, 'pages').replace(/\.md$/, '.html'));
return readFile(srcFilePath)
.then(text => md.fromText(text))
.then(html => fse.outputFile(destFilePath, html));
};
function buildAPIAnalyzerFiles(pxElementPaths){
// Set up Polymer Analyzer with 'bower_components' as its base directory
let analyzer = new Analyzer({
urlLoader: new FSUrlLoader('./bower_components')
});
// Run analyzer separately for each so we can write the descriptors into separate files.
// Promise.all to prevent premature completion
return Promise.all(pxElementPaths.map(elementDir => analyzeRepo(elementDir, analyzer)));
};
function analyzeRepo(elementDir, analyzer) {
// takes '/bower_components/px-foo-bar/' and extracts 'px-foo-bar'
const elementName = elementDir.match(/\/(px\-.*)\//)[1];
// find all elements in this folder that begin with the element name
return getFilesForRepo(elementDir, elementName)
.then(files => {
if (!files.length) {
// No .html files found, likely a -design repo
return Promise.reject('NO_HTML_FILE');
}
// console.log(`Analyzing ${elementName} files: ${files.join(', ')}`)
return analyzer.analyze(files);
})
.then(analysis => {
analysis = filterAnalysis(generateAnalysis(analysis, './bower_components'), elementName);
// console.log(`Writing API output to ${elementName}/${elementName}-api.json`);
return fse.outputFile(`bower_components/${elementName}/${elementName}-api.json`, JSON.stringify(analysis));
})
.catch(e => {
if (e !== 'NO_HTML_FILE') {
console.log(`Error for ${elementName}:\n${e}`);
}
});
};
function filterAnalysis(analysis, elementName) {
// The analysis paths go from each component's folder up to the bower_components/
// directory, so the element at px-foo/px-foo.html will have a path
// ../px-foo/px-foo.html. This filter makes sure the only things that end
// up in the api.json file for this element are things in its folder,
// not a bunch of other muck in 3rd-party components.
// The regex that comes out for px-foo would be /^\.\.\/px-foo\//
let belongsToElement = new RegExp(`^\.\.\/${elementName}\/`);
return {
schema_version: analysis.schema_version,
elements: analysis.elements ? analysis.elements.filter(a => belongsToElement.test(a.path)) : []
};
};
function getFilesForRepo(elementDir, elementName) {
return new Promise((resolve) => {
var globPattern;
if (elementName === 'px-app-helpers') {
globPattern = `${elementDir}px-*/px-*.html`;
}
else if (elementName === 'px-card') {
globPattern = `${elementDir}px-*.html`;
}
else {
globPattern = `${elementDir}${elementName}*.html`;
}
glob(globPattern, (err, files) => {
if (!files.length) {
return resolve([]);
}
return resolve(files.map(f => f.match(/bower_components\/(px-.+\/px\-.+html)/)[1]));
});
});
};
function processPagesJSON(text) {
const pages = JSON.parse(text);
const redirects = {};
const routes = {};
let queue = pages.map(page => ({ page: page, route: `/${page.path}` }));
while (queue.length) {
let {page, route} = queue.shift();
// Assign path from root to route
page._route = route;
// Inline keywords
if (Array.isArray(page.keywords) && page.keywords.length) {
page._keywords = page.keywords.join(' ');
}
// Parse out redirects and add to global redirects list
if (Array.isArray(page.redirects) && page.redirects.length) {
for (let redirect of page.redirects) {
if (redirects[redirect]) {
console.error(`
Redirects cannot appear more than once. The direct to ${redirect}
is set by ${path} and ${redirects[redirect]}. Delete duplicates.
`);
}
redirects[redirect] = route;
}
}
// Add to global routes list
if (routes[route]) {
console.error(`
Routes cannot appear more than once. The following route is defined
more than once, delete any duplicates:
${routes[route]}
`);
}
routes[route] = Object.assign(page, {});
// Add children to queue, if any
if (Array.isArray(page.pages) && page.pages.length) {
queue = queue.concat(page.pages.map(p => ({ page: p, route: `${route}/${p.path}` })));
}
}
return Promise.resolve({ pages: pages, redirects: redirects, routes: routes });
};
gulp.task('docs:clean', function(){
return gulp.src(['pages'], {
read: false
})
.pipe($.clean());
});
/*
* Reads any markdown (suffix .md) files in _pages/, renders the markdown into
* HTML, and writes file to pages/ at the same path with a .html suffix.
*/
gulp.task('docs:md', function(cb){
// This glob pattern matches all files/directories not prefixed with `_`
glob('_pages/**/*.md', { ignore: ['_pages/**/_*', '_pages/**/_*/**'] }, (err, files) => {
Promise.all(files.map(buildMdFile)).then(() => cb());
});
});
gulp.task('generate-api', function(cb){
glob('bower_components/px-*/', (err, files) => {
buildAPIAnalyzerFiles(files)
.then(() => cb());
});
});
gulp.task('docs:pages-json', function(cb){
const pagesPath = path.join(__dirname, 'elements', 'px-catalog', 'pages.json');
const outputPath = path.join(__dirname, 'pages', 'app-data.json');
readFile(pagesPath)
.then(processPagesJSON)
.then(pagesData => fse.outputFile(outputPath, JSON.stringify(pagesData,null,'')))
.then(() => cb())
.catch(e => console.error(`The pages.json file is invalid: ${e}`));
});
/*
* Copies any files in _pages/ that do not end with .md to the pages/ dir.
*/
gulp.task('docs:copy-non-md', function(){
// This glob pattern matches all files/directories not prefixed with `_`
return gulp.src(['./_pages/**/*', '!./_pages/**/*.md', '!./_pages/**/_*', '!./_pages/**/_*/*'])
.pipe(gulp.dest('./pages/'));
});
/*
* Creates a data file with build info that can be viewed by typing build into
* the search sidebar.
*/
gulp.task('docs:generate-build-data', function(cb){
var commit = execSync(`git rev-parse HEAD`, {encoding:'utf8'}).trim();
fse.outputFile(path.join(__dirname, 'pages', 'build-data.json'), JSON.stringify({
commit: commit,
shortCommit: commit.slice(0,7),
commitUrl: `https://github.com/predix-ui/predix-ui.github.io/commit/${commit}`,
time: new Date().toLocaleString()
}))
.then(() => cb())
.catch(e => console.error(`The build data could not be generated: ${e}`));
});
gulp.task('docs', function(callback) {
gulpSequence('docs:clean', 'docs:copy-non-md', 'docs:md', 'docs:pages-json', 'docs:generate-build-data')(callback);
});
/*
* GALLERY-JSON
* creates the json files used in the component gallery
*/
//scrape pages.json
gulp.task('gallery-json:component-data', function(callback){
const componentDataFunc = createPagesFilter(require('./elements/px-catalog/pages.json'));
fs.writeFileSync('./_pages/component-gallery/component-data.json',JSON.stringify(componentDataFunc, null,2));
fs.writeFileSync('./pages/component-gallery/component-data.json',JSON.stringify(componentDataFunc, null,2));
callback();
});
// title-data
gulp.task('gallery-json:tile-data', function(callback){
const titleDataFunc = createComponentsInfo(require('./pages/component-gallery/component-data.json'));
fs.writeFileSync('./_pages/component-gallery/tile-data.json',JSON.stringify(titleDataFunc, null,2));
fs.writeFileSync('./pages/component-gallery/tile-data.json',JSON.stringify(titleDataFunc, null,2));
callback();
});
gulp.task('gallery-json', function(callback){
gulpSequence('gallery-json:component-data', 'gallery-json:tile-data')(callback);
});