Skip to content

Commit 3845e55

Browse files
authored
Update repo (#1704)
1 parent 2770a0b commit 3845e55

30 files changed

+194
-196
lines changed

.changeset/config.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"$schema": "https://unpkg.com/@changesets/config@2.3.0/schema.json",
3-
"changelog": ["@changesets/changelog-github", { "repo": "drwpow/openapi-typescript" }],
2+
"$schema": "https://unpkg.com/@changesets/[email protected].1/schema.json",
3+
"changelog": ["@changesets/changelog-github", { "repo": "openapi-ts/openapi-typescript" }],
44
"ignore": ["openapi-typescript-docs", "@example/*"],
55
"commit": false,
66
"fixed": [],

.github/ISSUE_TEMPLATE/bug-report-fetch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ _(in case it’s not obvious)_
2020

2121
**Checklist**
2222

23-
- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md))
23+
- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md))

.github/ISSUE_TEMPLATE/bug-report-ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ _(in case it’s not obvious)_
3131
**Checklist**
3232

3333
- [ ] My OpenAPI schema passes the [Redocly validator](https://redocly.com/docs/cli/commands/lint/) (`npx @redocly/cli@latest lint`)
34-
- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md))
34+
- [ ] I’m willing to open a PR (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md))

.github/ISSUE_TEMPLATE/feature-request-fetch.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ _Write out the proposed syntax change. Please reference any prior art or similar
1616

1717
**Checklist**
1818

19-
- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md))
19+
- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-fetch/CONTRIBUTING.md))

.github/ISSUE_TEMPLATE/feature-request-ts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@ _Outline the change to the library. If this is for the CLI, propose a flag name
1616

1717
**Checklist**
1818

19-
- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md))
19+
- [ ] I’m willing to open a PR for this (see [CONTRIBUTING.md](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/CONTRIBUTING.md))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ Contributions are appreciated and welcome! See the appropriate guide for each pa
3939

4040
## ♥️ Thanks
4141

42-
- Thanks to [the Project Sponsors](#sponsors) for keeping this project going!
43-
- Thanks to [dozens of lovely, smart contributors](https://github.com/drwpow/openapi-typescript/graphs/contributors) that made this library possible
42+
- Thanks to [the Project Sponsors](#-sponsors) for keeping this project going!
43+
- Thanks to [dozens of lovely, smart contributors](https://github.com/openapi-ts/openapi-typescript/graphs/contributors) that made this library possible
4444
- Thanks to [Vitepress](https://vitepress.dev/) for the docs site
4545
- Thanks to [Cloudflare Pages](https://pages.cloudflare.com/) for docs site hosting
4646
- Thanks to [Algolia](https://www.algolia.com/) for the docs site search

docs/.vitepress/en.ts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -78,12 +78,10 @@ export const en = defineConfig({
7878
indexName: "openapi-ts",
7979
},
8080
},
81-
socialLinks: [
82-
{ icon: "github", link: "https://github.com/drwpow/openapi-typescript" },
83-
],
81+
socialLinks: [{ icon: "github", link: "https://github.com/openapi-ts/openapi-typescript" }],
8482
footer: {
8583
message:
86-
'Released under the <a href="https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-typescript/LICENSE">MIT License</a>.',
84+
'Released under the <a href="https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/LICENSE">MIT License</a>.',
8785
},
8886
},
8987
});

docs/.vitepress/shared.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export const shared = defineConfig({
3434
locales: { ...zhSearch },
3535
},
3636
},
37-
socialLinks: [{ icon: "github", link: "https://github.com/drwpow/openapi-typescript" }],
37+
socialLinks: [{ icon: "github", link: "https://github.com/openapi-ts/openapi-typescript" }],
3838
},
3939
transformPageData({ relativePath, frontmatter }) {
4040
frontmatter.head ??= [];

docs/.vitepress/zh.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export const zh = defineConfig({
5454

5555
footer: {
5656
message:
57-
'基于 <a href="https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-typescript/LICENSE">MIT</a> 许可发布',
57+
'基于 <a href="https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/LICENSE">MIT</a> 许可发布',
5858
},
5959
},
6060
});

docs/6.x/introduction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ description: Quickstart
77

88
openapi-typescript turns [OpenAPI 3.0 & 3.1](https://spec.openapis.org/oas/latest.html) schemas into TypeScript quickly using Node.js. No Java/node-gyp/running OpenAPI servers necessary.
99

10-
The code is [MIT-licensed](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-typescript/LICENSE) and free for use.
10+
The code is [MIT-licensed](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/LICENSE) and free for use.
1111

1212
## Features
1313

@@ -20,7 +20,7 @@ _Note: OpenAPI 2.x is supported with versions `5.x` and previous_
2020

2121
## Examples
2222

23-
👀 [See examples](https://github.com/drwpow/openapi-typescript/blob/main/packages/openapi-typescript/examples/)
23+
👀 [See examples](https://github.com/openapi-ts/openapi-typescript/blob/main/packages/openapi-typescript/examples/)
2424

2525
## Setup
2626

0 commit comments

Comments
 (0)