From 226a41412e8539fc2fe2314c33ee8a026767955d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E8=B5=B5=E6=9E=97?= <939704842@qq.com> Date: Thu, 28 Nov 2024 14:03:48 +0800 Subject: [PATCH] =?UTF-8?q?chore:=201.=20=E4=BF=AE=E6=94=B9=20antd-mobile?= =?UTF-8?q?=20logo=20=E5=92=8C=E5=AE=98=E7=BD=91=E5=9C=B0=E5=9D=80;=202.?= =?UTF-8?q?=20=E4=B8=BA=20commit=20=E6=A0=A1=E9=AA=8C=E6=B7=BB=E5=8A=A0?= =?UTF-8?q?=E5=8F=82=E8=80=83=E5=9C=B0=E5=9D=80=20(#1315)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-authored-by: 柏丘 --- .../HomeBaseLayout/components/Frame/index.tsx | 24 +++++++++---------- scripts/verifyCommitMsg.js | 2 +- 2 files changed, 13 insertions(+), 13 deletions(-) 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); }