diff --git a/.dumi/theme/builtins/HomeBaseLayout/components/Frame/index.tsx b/.dumi/theme/builtins/HomeBaseLayout/components/Frame/index.tsx index db41d1df1..1331ac27f 100644 --- a/.dumi/theme/builtins/HomeBaseLayout/components/Frame/index.tsx +++ b/.dumi/theme/builtins/HomeBaseLayout/components/Frame/index.tsx @@ -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: '一款为设计者提升效率的工具集', @@ -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', diff --git a/scripts/verifyCommitMsg.js b/scripts/verifyCommitMsg.js index 4f690b944..6e633ffd4 100644 --- a/scripts/verifyCommitMsg.js +++ b/scripts/verifyCommitMsg.js @@ -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); }