Skip to content
Snippets Groups Projects
Commit d42990f0 authored by syuilo's avatar syuilo
Browse files

Refactor

parent 3d321d4e
No related branches found
No related tags found
No related merge requests found
......@@ -70,24 +70,24 @@ gulp.task('build:ts', () =>
.pipe(gulp.dest('./built/'))
);
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, '<p>$2</p>');
}
gulp.task('build:about:docs', () => {
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, '<p>$2</p>');
}
function getLicenseSectionHtml(path: string): string {
try {
const pkg = JSON.parse(fs.readFileSync(Path.parse(path).dir + '/package.json', 'utf-8'));
const licenseHtml = getLicenseHtml(path);
return `<details><summary>${pkg.name} <small>v${pkg.version}</small></summary>${licenseHtml}</details>`;
} catch (e) {
return null;
function getLicenseSectionHtml(path: string): string {
try {
const pkg = JSON.parse(fs.readFileSync(Path.parse(path).dir + '/package.json', 'utf-8'));
const licenseHtml = getLicenseHtml(path);
return `<details><summary>${pkg.name} <small>v${pkg.version}</small></summary>${licenseHtml}</details>`;
} catch (e) {
return null;
}
}
}
gulp.task('build:about:docs', () => {
const licenses = glob.sync('./node_modules/**/LICENSE*');
const licenseHtml = getLicenseHtml('./LICENSE');
const thirdpartyLicensesHtml = licenses.map(license => getLicenseSectionHtml(license)).join('');
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment