mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
chore(cli): fix spell error in changelog.ts (#8763)
* docs(PullRefresh): fix spell check * style(cli): fix spell check about "toogle" -> "toggle" in DemoPlayground.vue * style(Button): fix spell error * feat(List): remove unused Less var @list-icon-margin-right * style(cli): fix spell error in changelog.ts
This commit is contained in:
parent
626ca4954c
commit
dba85a6894
@ -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> = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user