Skip to content

Commit

Permalink
docs: [cli] 更新仓库地址以及相应的链接地址
Browse files Browse the repository at this point in the history
  • Loading branch information
haohao_peng authored and albyben committed Jul 18, 2024
1 parent b5568df commit 6a546f3
Show file tree
Hide file tree
Showing 7 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/gitee.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ jobs:
env:
SSH_PRIVATE_KEY: ${{ secrets.GITEE_SSH_PRIVATE_KEY }}
with:
source-repo: '[email protected]:kdcloudone/kdesign.git'
destination-repo: '[email protected]:kdcloudone/kdesign.git'
source-repo: '[email protected]:kingdee/kdesign.git'
destination-repo: '[email protected]:kingdee/kdesign.git'
2 changes: 1 addition & 1 deletion COMPONENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
感谢你的宝贵时间,我们很高兴您有兴趣为 KDesign 做出贡献。此篇文档旨在帮助 开发者 在新组件开发上提供帮助

## 克隆仓库
1. 通过 [https://github.com/kdcloudone/kdesign](https://github.com/kdcloudone/kdesign) 访问我们的仓库,然后 Fork 此仓库到你的 Repositories。
1. 通过 [https://github.com/kingdee/kdesign](https://github.com/kingdee/kdesign) 访问我们的仓库,然后 Fork 此仓库到你的 Repositories。
2. 进入你的 Repositories 里面,找到 Fork 的 KDesign 项目,使用 `git clone` 指令克隆项目到你本地。

## 新组件开发
Expand Down
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ KDesign团队成员都是用 Yarn 进行包管理。下面的指令我们也会
8. 提交 pull request, 如果有对应的 issue,请进行关联。

同步最新的组件库代码,请参照以下的操作步骤:
1. 添加远程仓库,运行 `git remote add kd https://github.com/kdcloudone/kdesign.git`, 关联的远程仓库名kd可按照自己的需要命名
1. 添加远程仓库,运行 `git remote add kd https://github.com/kingdee/kdesign.git`, 关联的远程仓库名kd可按照自己的需要命名
2. 同步kdesign组件库最新的代码到本地仓库,运行`git fetch kd`
3. 同步组件库最新代码到本地main分支,运行 `git rebase kd/main`
4. 推送最新代码到远程, `git push origin main`, 如果推送失败,可以使用 `git push origin main -f`
Expand Down
2 changes: 1 addition & 1 deletion docs/guide/customtopic.md
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ kdesign 的样式使用了 [Less](http://lesscss.org/) 作为开发语言,并
@btn-transition-fn: cubic-bezier(0.075, 0.82, 0.165, 1);
```

我们定义的所有样式变量你可以在 [这里](https://github.com/kdcloudone/kdesign/blob/master/components/style/themes/default.less) 找到
我们定义的所有样式变量你可以在 [这里](https://github.com/kingdee/kdesign/blob/master/components/style/themes/default.less) 找到
## 定制方式
原理上是使用 less 提供的 [modifyVars](http://lesscss.org/usage/#using-less-in-the-browser-modify-variables) 的方式进行覆盖变量。下面将针对不同的场景提供一些常用的定制方式。

Expand Down
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@
],
"homepage": "https://react.kingdee.design/",
"bugs": {
"url": "https://github.com/kdcloudone/kdesign/issues"
"url": "https://github.com/kingdee/kdesign/issues"
},
"repository": {
"type": "git",
"url": "[email protected]:kdcloudone/kdesign.git"
"url": "[email protected]:kingdee/kdesign.git"
},
"contributors": [
"kdesign"
Expand Down
2 changes: 1 addition & 1 deletion scripts/filter-changelog.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const filterData = versionData.map((version) => {
)
const versionHeaderStr = versionInfo[2]
? `## [${versionInfo[1]}](${versionInfo[2]})\n\`${versionInfo[3]}\`\n`
: `## [${versionInfo[1]}](https://github.com/kdcloudone/kdesign)\n\`${versionInfo[3]}\`\n`
: `## [${versionInfo[1]}](https://github.com/kingdee/kdesign)\n\`${versionInfo[3]}\`\n`
const componentContent = {}
const notComponentContent = []
const versionContent = version.match(/(\*\s+.*)\n/g)
Expand Down
2 changes: 1 addition & 1 deletion site/src/template/layout/header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ const Header = (props: NavProps) => {
<DocsSearch appId={appIdQS} indexName={indexNameQS} apiKey={apiKeyQS} transformData={transformData} />
<div className="header-version">v {kdesignVersion}</div>
<a
href="https://github.com/kdcloudone/kdesign"
href="https://github.com/kingdee/kdesign"
rel="noreferrer"
className="header-github-link"
target="_blank"
Expand Down

0 comments on commit 6a546f3

Please sign in to comment.