mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2025-04-12 14:40:47 +08:00
docs: update repo url
This commit is contained in:
parent
192d07bd39
commit
cef4c62ad8
1086
CHANGELOG.en-US.md
1086
CHANGELOG.en-US.md
File diff suppressed because it is too large
Load Diff
1078
CHANGELOG.zh-CN.md
1078
CHANGELOG.zh-CN.md
File diff suppressed because it is too large
Load Diff
@ -74,7 +74,7 @@ Naive UI recommends using [xicons](https://www.xicons.org) as icon library.
|
||||
|
||||
## Contributing
|
||||
|
||||
Please see [CONTRIBUTING.md](https://github.com/TuSimple/naive-ui/blob/main/CONTRIBUTING.md).
|
||||
Please see [CONTRIBUTING.md](https://github.com/tusen-ai/naive-ui/blob/main/CONTRIBUTING.md).
|
||||
|
||||
## License
|
||||
|
||||
|
@ -76,7 +76,7 @@ naive-ui 建议使用 [xicons](https://www.xicons.org) 作为图标库。
|
||||
|
||||
## 贡献
|
||||
|
||||
请参考 [CONTRIBUTING.zh-CN.md](https://github.com/TuSimple/naive-ui/blob/main/CONTRIBUTING.zh-CN.md)
|
||||
请参考 [CONTRIBUTING.zh-CN.md](https://github.com/tusen-ai/naive-ui/blob/main/CONTRIBUTING.zh-CN.md)
|
||||
|
||||
## 许可
|
||||
|
||||
|
@ -42,7 +42,7 @@ What's more, ..., no more. Just enjoy it.
|
||||
|
||||
## Contributing
|
||||
|
||||
Please see [CONTRIBUTING.md](https://github.com/TuSimple/naive-ui/blob/main/CONTRIBUTING.md).
|
||||
Please see [CONTRIBUTING.md](https://github.com/tusen-ai/naive-ui/blob/main/CONTRIBUTING.md).
|
||||
|
||||
## License
|
||||
|
||||
|
@ -42,7 +42,7 @@ Naive UI 全量使用 TypeScript 编写,和你的 TypeScript 项目无缝衔
|
||||
|
||||
## 贡献
|
||||
|
||||
请参考 [CONTRIBUTING.md](https://github.com/TuSimple/naive-ui/blob/main/CONTRIBUTING.md)。
|
||||
请参考 [CONTRIBUTING.md](https://github.com/tusen-ai/naive-ui/blob/main/CONTRIBUTING.md)。
|
||||
|
||||
## 许可
|
||||
|
||||
|
@ -50,7 +50,7 @@ If you are using Vite, please see [example](https://github.com/07akioni/naive-ui
|
||||
|
||||
## Webpack Example
|
||||
|
||||
If you are using Webpack, please see [example](https://github.com/TuSimple/naive-ui/tree/main/playground/ssr).
|
||||
If you are using Webpack, please see [example](https://github.com/tusen-ai/naive-ui/tree/main/playground/ssr).
|
||||
|
||||
## Inline Style Optimization
|
||||
|
||||
|
@ -50,7 +50,7 @@ export default defineNuxtConfig({
|
||||
|
||||
## Webpack 示例
|
||||
|
||||
如果你使用的是 Webpack,请参考[例子](https://github.com/TuSimple/naive-ui/tree/main/playground/ssr)。
|
||||
如果你使用的是 Webpack,请参考[例子](https://github.com/tusen-ai/naive-ui/tree/main/playground/ssr)。
|
||||
|
||||
## 内联样式优化
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
export const repoUrl = 'https://github.com/TuSimple/naive-ui'
|
||||
export const repoUrl = 'https://github.com/tusen-ai/naive-ui'
|
||||
export const blobUrl = repoUrl + '/blob/main/'
|
||||
|
@ -163,7 +163,7 @@
|
||||
"homepage": "https://www.naiveui.com",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/TuSimple/naive-ui"
|
||||
"url": "https://github.com/tusen-ai/naive-ui"
|
||||
},
|
||||
"keywords": [
|
||||
"naive-ui",
|
||||
|
@ -34,7 +34,7 @@ async function releaseChangelogToDingTalk () {
|
||||
|
||||
const title = `变更日志 ${number.trim()}`
|
||||
|
||||
const text = `${changelog.trim()}\n\n完整信息见 https://github.com/TuSimple/naive-ui/blob/main/CHANGELOG.zh-CN.md\n`
|
||||
const text = `${changelog.trim()}\n\n完整信息见 https://github.com/tusen-ai/naive-ui/blob/main/CHANGELOG.zh-CN.md\n`
|
||||
|
||||
await inquirer
|
||||
.prompt([
|
||||
@ -79,7 +79,7 @@ async function releaseChangelogToDiscord () {
|
||||
.replace(/^##/gm, '')
|
||||
.replace(/\[([^\]]+)\]\([^)]+\)/g, '[$1]')
|
||||
|
||||
const message = `Changelog ${changelog.trim()}\n\nSee https://github.com/TuSimple/naive-ui/blob/main/CHANGELOG.en-US.md for details.\n`
|
||||
const message = `Changelog ${changelog.trim()}\n\nSee https://github.com/tusen-ai/naive-ui/blob/main/CHANGELOG.en-US.md for details.\n`
|
||||
|
||||
await inquirer
|
||||
.prompt([
|
||||
|
@ -25,7 +25,7 @@ describe('n-carousel', () => {
|
||||
await sleep(25)
|
||||
;([0, 1, 2, 3, 4] as const).forEach((i) => {
|
||||
if (i === 1) {
|
||||
// todo: There will be problems in different environments here, https://github.com/TuSimple/naive-ui/runs/5484107206?check_suite_focus=true
|
||||
// todo: There will be problems in different environments here, https://github.com/tusen-ai/naive-ui/runs/5484107206?check_suite_focus=true
|
||||
// expect(
|
||||
// wrapper.find(`[data-index="${i}"]`).attributes('aria-hidden')
|
||||
// ).toBe('false')
|
||||
|
@ -124,7 +124,7 @@ export default defineComponent({
|
||||
}
|
||||
)
|
||||
|
||||
// for SSR, fix bug https://github.com/TuSimple/naive-ui/issues/2462
|
||||
// for SSR, fix bug https://github.com/tusen-ai/naive-ui/issues/2462
|
||||
const isSsrRef = ref(false)
|
||||
const contentElRef = ref<HTMLElement>()
|
||||
onMounted(() => {
|
||||
|
Loading…
x
Reference in New Issue
Block a user