From b87e6e80446f32666c5ea8203cda8ab6051215f8 Mon Sep 17 00:00:00 2001 From: syuilo Date: Thu, 29 Dec 2016 16:08:34 +0900 Subject: [PATCH] :hammer: --- gulpfile.ts | 10 ++++++++-- package.json | 2 ++ 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/gulpfile.ts b/gulpfile.ts index 4ac2f5a82..2bc948296 100644 --- a/gulpfile.ts +++ b/gulpfile.ts @@ -24,6 +24,7 @@ const transformify = require('syuilo-transformify'); const pug = require('gulp-pug'); const git = require('git-last-commit'); import * as rimraf from 'rimraf'; +import * as escapeHtml from 'escape-html'; const env = process.env.NODE_ENV; const isProduction = env === 'production'; @@ -63,11 +64,16 @@ gulp.task('build:ts', () => .pipe(gulp.dest('./built/')) ); -gulp.task('build:about:docs', () => { - const licenseHtml = fs.readFileSync('./LICENSE', 'utf-8') +function getLicenseHtml(path: string): string { + return escapeHtml(fs.readFileSync(path, 'utf-8')) .replace(/\r\n/g, '\n') .replace(/(.)\n(.)/g, '$1 $2') .replace(/(^|\n)(.*?)($|\n)/g, '

$2

'); +} + +gulp.task('build:about:docs', () => { + const licenses = glob.sync('./node_modules/**/LICENSE*'); + const licenseHtml = [getLicenseHtml('./LICENSE')].concat(licenses.map(license => getLicenseHtml(license))).join('
'); const pugs = glob.sync('./src/web/about/pages/**/*.pug'); const streams = pugs.map(file => { const page = file.replace('./src/web/about/pages/', '').replace('.pug', ''); diff --git a/package.json b/package.json index ff5d82ebf..1728ce917 100644 --- a/package.json +++ b/package.json @@ -26,6 +26,7 @@ "@types/compression": "0.0.33", "@types/cors": "0.0.33", "@types/elasticsearch": "5.0.9", + "@types/escape-html": "0.0.19", "@types/event-stream": "3.3.30", "@types/express": "4.0.34", "@types/glob": "5.0.30", @@ -70,6 +71,7 @@ "deepcopy": "0.6.3", "del": "2.2.2", "elasticsearch": "12.1.3", + "escape-html": "1.0.3", "escape-regexp": "0.0.1", "event-stream": "3.3.4", "express": "4.14.0",