Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: 1. 修改 antd-mobile logo 和官网地址; 2. 为 commit 校验添加参考地址 #1315

Merged
merged 1 commit into from
Nov 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 12 additions & 12 deletions .dumi/theme/builtins/HomeBaseLayout/components/Frame/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,18 +11,18 @@ const frameList = {
logo: 'https://mdn.alipayobjects.com/huamei_bsws4g/afts/img/BdagQ4iT8TMAAAAAAAAAAAAADoEQAQFr/original',
href: 'https://ant.design/',
},
{
title: 'Ant Design Mobile',
subTitle: 'Ant Design 移动端 UI 组件库',
logo: 'https://gw.alipayobjects.com/mdn/rms/afts/img/A*ANrfQaxlbVcAAAAAAAAAAABkARQnAQ',
href: 'https://antd-mobile.alipay.com/'
},
{
title: 'AntV',
subTitle: '全新一代数据可视化解决方案',
logo: 'https://mdn.alipayobjects.com/huamei_bsws4g/afts/img/j-PwR5GHEWYAAAAAAAAAAAAADoEQAQFr/original',
href: 'https://antv.antgroup.com/'
},
{
title: 'Ant Design Mobile',
subTitle: 'Ant Design 移动端 UI 组件库',
logo: 'https://mdn.alipayobjects.com/huamei_bsws4g/afts/img/6gdISLFqBBAAAAAAAAAAAAAADoEQAQFr/original',
href: 'https://mobile.ant.design/'
},
{
title: 'Kitchen',
subTitle: '一款为设计者提升效率的工具集',
Expand All @@ -37,18 +37,18 @@ const frameList = {
logo: 'https://mdn.alipayobjects.com/huamei_bsws4g/afts/img/BdagQ4iT8TMAAAAAAAAAAAAADoEQAQFr/original',
href: 'https://ant.design/',
},
{
title: 'Ant Design Mobile',
subTitle: 'Mobile UI Component Library',
logo: 'https://gw.alipayobjects.com/mdn/rms/afts/img/A*ANrfQaxlbVcAAAAAAAAAAABkARQnAQ',
href: 'https://antd-mobile.alipay.com/'
},
{
title: 'AntV',
subTitle: 'Data Visualization Solution',
logo: 'https://mdn.alipayobjects.com/huamei_bsws4g/afts/img/j-PwR5GHEWYAAAAAAAAAAAAADoEQAQFr/original',
href: 'https://antv.antgroup.com/'
},
{
title: 'Ant Design Mobile',
subTitle: 'Mobile UI Component Library',
logo: 'https://mdn.alipayobjects.com/huamei_bsws4g/afts/img/6gdISLFqBBAAAAAAAAAAAAAADoEQAQFr/original',
href: 'https://mobile.ant.design/'
},
{
title: 'Kitchen',
subTitle: 'Enhance Efficiency for Designers',
Expand Down
2 changes: 1 addition & 1 deletion scripts/verifyCommitMsg.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,6 @@ const chalk = require('chalk');
if (!REG.test(commitMsg) && !MergeCommitREG.test(commitMsg)) {
console.error(`${chalk.bgRed.white(' ERROR ')}`, chalk.red('invalid commit message:'), commitMsg);
console.error('Proper commit message format is required for automated changelog generation.');
console.error(chalk.green('Please see xxx for more'));
console.error(chalk.green('Please see https://opendocs.alipay.com/cloud/08jm0h for more'));
process.exit(1);
}