chore(cli): fix spell error in changelog.ts (#8765)

* feat(List): remove unused Less var @list-icon-margin-right

* style(cli): fix spell error in changelog.ts
This commit is contained in:
a298003154 2021-05-25 20:23:31 +08:00 committed by GitHub
parent 1354e0ddaa
commit eeac061682
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,12 +6,12 @@ import conventionalChangelog from 'conventional-changelog';
const DIST_FILE = join(ROOT, './changelog.generated.md');
const MAIN_TEMPLATE = join(__dirname, '../../template/changelog-main.hbs');
const HEADER_TEMPALTE = join(__dirname, '../../template/changelog-header.hbs');
const COMMIT_TEMPALTE = join(__dirname, '../../template/changelog-commit.hbs');
const HEADER_TEMPLATE = join(__dirname, '../../template/changelog-header.hbs');
const COMMIT_TEMPLATE = join(__dirname, '../../template/changelog-commit.hbs');
const mainTemplate = readFileSync(MAIN_TEMPLATE, 'utf-8');
const headerPartial = readFileSync(HEADER_TEMPALTE, 'utf-8');
const commitPartial = readFileSync(COMMIT_TEMPALTE, 'utf-8');
const headerPartial = readFileSync(HEADER_TEMPLATE, 'utf-8');
const commitPartial = readFileSync(COMMIT_TEMPLATE, 'utf-8');
function formatType(type: string) {
const MAP: Record<string, string> = {
@ -48,7 +48,7 @@ function transform(item: any) {
export async function changelog(): Promise<void> {
const spinner = ora('Generating changelog...').start();
return new Promise(resolve => {
return new Promise((resolve) => {
conventionalChangelog(
{
preset: 'angular',