В релиз добавлен readme.html
This commit is contained in:
@@ -2,6 +2,8 @@ const fs = require('fs-extra');
|
|||||||
const path = require('path');
|
const path = require('path');
|
||||||
const { execSync } = require('child_process');
|
const { execSync } = require('child_process');
|
||||||
|
|
||||||
|
const showdown = require('showdown');
|
||||||
|
|
||||||
const platform = process.argv[2];
|
const platform = process.argv[2];
|
||||||
|
|
||||||
const distDir = path.resolve(__dirname, '../dist');
|
const distDir = path.resolve(__dirname, '../dist');
|
||||||
@@ -15,6 +17,12 @@ async function build() {
|
|||||||
|
|
||||||
await fs.emptyDir(outDir);
|
await fs.emptyDir(outDir);
|
||||||
|
|
||||||
|
//добавляем readme в релиз
|
||||||
|
let readme = await fs.readFile(path.resolve(__dirname, '../README.md'), 'utf-8');
|
||||||
|
const converter = new showdown.Converter();
|
||||||
|
readme = converter.makeHtml(readme);
|
||||||
|
await fs.writeFile(`${outDir}/readme.html`, readme);
|
||||||
|
|
||||||
// перемещаем public на место
|
// перемещаем public на место
|
||||||
if (await fs.pathExists(publicDir)) {
|
if (await fs.pathExists(publicDir)) {
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user