Skip to content

Commit d762be2

Browse files
authored
chore(move): Update github references from BuilderIO -> QwikDev (#6111)
* chore(move): Update github references from BuilderIO -> QwikDev * fixup! chore(move): Update github references from BuilderIO -> QwikDev
1 parent 2d745bf commit d762be2

File tree

125 files changed

+1007
-1011
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

125 files changed

+1007
-1011
lines changed

.all-contributorsrc

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"projectName": "qwik",
3-
"projectOwner": "BuilderIO",
3+
"projectOwner": "QwikDev",
44
"repoType": "github",
55
"repoHost": "https://github.com",
66
"files": ["README.md"],

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Please include a summary of the change and which issue is fixed. Please also inc
3434

3535
# Checklist:
3636

37-
- [ ] My code follows the [developer guidelines of this project](https://github.com/BuilderIO/qwik/blob/main/CONTRIBUTING.md)
37+
- [ ] My code follows the [developer guidelines of this project](https://github.com/QwikDev/qwik/blob/main/CONTRIBUTING.md)
3838
- [ ] I have performed a self-review of my own code
3939
- [ ] I have made corresponding changes to the documentation
4040
- [ ] Added new tests to cover the fix / functionality

.github/workflows/bench.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ jobs:
5151
run: cargo +nightly-2021-09-30 bench --workspace | tee output.txt
5252

5353
- name: Download previous benchmark results
54-
run: mkdir raw-data && curl -o raw-data/benchmark-data.json https://raw.githubusercontent.com/BuilderIO/qwik-raw-data/gh-pages/benchmark-data.json
54+
run: mkdir raw-data && curl -o raw-data/benchmark-data.json https://raw.githubusercontent.com/QwikDev/qwik-raw-data/gh-pages/benchmark-data.json
5555

5656
- name: Analyze benchmark result
5757
uses: benchmark-action/github-action-benchmark@v1
@@ -102,5 +102,5 @@ jobs:
102102
clean: false
103103
single-commit: false
104104
git-config-email: github-bot@builder.io
105-
repository-name: BuilderIO/qwik-raw-data
105+
repository-name: QwikDev/qwik-raw-data
106106
commit-message: 'Update'

CONTINUOUS_BUILD.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ This repo contains build artifacts that are generated as part of the continues b
44

55
Currently supported artifacts:
66

7-
- [`@builder.io/qwik`](https://github.com/BuilderIO/qwik-build)
8-
- [`@builder.io/qwik-city`](https://github.com/BuilderIO/qwik-city-build)
9-
- [`@builder.io/qwik-labs`](https://github.com/BuilderIO/qwik-labs-build)
7+
- [`@builder.io/qwik`](https://github.com/QwikDev/qwik-build)
8+
- [`@builder.io/qwik-city`](https://github.com/QwikDev/qwik-city-build)
9+
- [`@builder.io/qwik-labs`](https://github.com/QwikDev/qwik-labs-build)
1010

1111
The build artifact is created if:
1212

@@ -27,23 +27,23 @@ To install a specific build artifact change you `package.json` like so (not all
2727
```json
2828
{
2929
"dependencies": {
30-
"@builder.io/qwik": "github:BuilderIO/qwik-build#SHA",
31-
"@builder.io/qwik-city": "github:BuilderIO/qwik-city-build#SHA",
32-
"@builder.io/qwik-labs": "github:BuilderIO/qwik-labs-build#SHA"
30+
"@builder.io/qwik": "github:QwikDev/qwik-build#SHA",
31+
"@builder.io/qwik-city": "github:QwikDev/qwik-city-build#SHA",
32+
"@builder.io/qwik-labs": "github:QwikDev/qwik-labs-build#SHA"
3333
}
3434
}
3535
```
3636

3737
Where `#SHA` is one of the following:
3838

3939
- `#SHA` - Install a specific build SHA. You can get the SHA from:
40-
- [`@builder.io/qwik`](https://github.com/BuilderIO/qwik-build/commits/) commits
41-
- [`@builder.io/qwik-city`](https://github.com/BuilderIO/qwik-city-build/commits/) commits
42-
- [`@builder.io/qwik-labs`](https://github.com/BuilderIO/qwik-labs-build/commits/) commits
40+
- [`@builder.io/qwik`](https://github.com/QwikDev/qwik-build/commits/) commits
41+
- [`@builder.io/qwik-city`](https://github.com/QwikDev/qwik-city-build/commits/) commits
42+
- [`@builder.io/qwik-labs`](https://github.com/QwikDev/qwik-labs-build/commits/) commits
4343
- `#build/name` (or `#main`) - Install a specific `build/*` (or `#main`) branch:
44-
- [`@builder.io/qwik`](https://github.com/BuilderIO/qwik-build/branches/) branches
45-
- [`@builder.io/qwik-city`](https://github.com/BuilderIO/qwik-city-build/branches/) branches
46-
- [`@builder.io/qwik-labs`](https://github.com/BuilderIO/qwik-labs-build/branches/) branches
44+
- [`@builder.io/qwik`](https://github.com/QwikDev/qwik-build/branches/) branches
45+
- [`@builder.io/qwik-city`](https://github.com/QwikDev/qwik-city-build/branches/) branches
46+
- [`@builder.io/qwik-labs`](https://github.com/QwikDev/qwik-labs-build/branches/) branches
4747
> NOTE: Package managers will treat any SHA in the lock file which is on the branch as valid, and so they will not auto upgrade to the latest. For this reason this is not recommended.
4848
4949
## Bisect for regression

CONTRIBUTING.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ We adopt [trunk-based development](https://trunkbaseddevelopment.com/) therefore
2222

2323
### Good first issue
2424

25-
The issues marked with [_Good first issue_](https://github.com/BuilderIO/qwik/issues?q=is%3Aissue+is%3Aopen+label%3A%22COMMUNITY%3A++good+first+issue%22) are a good starting point to familiarize yourself with the project.
25+
The issues marked with [_Good first issue_](https://github.com/QwikDev/qwik/issues?q=is%3Aissue+is%3Aopen+label%3A%22COMMUNITY%3A++good+first+issue%22) are a good starting point to familiarize yourself with the project.
2626

2727
Before solving the problem, please check with the maintainers that the issue is still relevant. Feel free to leave a comment on the issue to show your intention to work on it and prevent other people from unintentionally duplicating your effort.
2828

@@ -36,7 +36,7 @@ Before submitting a pull request, consider the following guidelines:
3636
- Run `pnpm fmt` to lint the code.
3737
- Commit your code with a good commit message [using "Commitizen"](#committing-using-commitizen).
3838
- Push your branch to GitHub: `git push origin my-branch`
39-
- In GitHub, send a pull request to `BuilderIO:main`.
39+
- In GitHub, send a pull request to `QwikDev:main`.
4040

4141
> If you aren't sure your PR is ready, open it as a [draft](https://github.blog/2019-02-14-introducing-draft-pull-requests/) to make it clear to the maintainer.
4242
@@ -307,11 +307,11 @@ This will show an interactive UI to update all dependencies. Be careful about pe
307307

308308
## Starter CLI `create-qwik`
309309

310-
- [Starter CLI](https://github.com/BuilderIO/qwik/blob/main/starters/README.md)
310+
- [Starter CLI](https://github.com/QwikDev/qwik/blob/main/starters/README.md)
311311

312312
## Pull Request
313313

314-
- [Open Qwik in StackBlitz Codeflow](https://pr.new/github.com/BuilderIO/qwik/)
314+
- [Open Qwik in StackBlitz Codeflow](https://pr.new/github.com/QwikDev/qwik/)
315315
- Review PR in StackBlitz
316316
![image](https://user-images.githubusercontent.com/4918140/195581745-8dfca1f9-2dcd-4f6a-b7aa-705f3627f8fa.png)
317317

@@ -344,7 +344,7 @@ pnpm fmt
344344
1. Run `pnpm release.prepare`, which will test, lint and build.
345345
2. Use the interactive UI to select the next version, which will update the `package.json` `version` property, add the git change, and start a commit message.
346346
3. Create a PR with the `package.json` change to merge to `main`.
347-
4. After the `package.json` with the updated version is in `main`, click the [Run Workflow](https://github.com/BuilderIO/qwik/actions/workflows/ci.yml) button from the "Qwik CI" GitHub Action workflow.
347+
4. After the `package.json` with the updated version is in `main`, click the [Run Workflow](https://github.com/QwikDev/qwik/actions/workflows/ci.yml) button from the "Qwik CI" GitHub Action workflow.
348348
5. Select the NPM dist-tag that should be used for this version, then click "Run Workflow".
349349
6. The GitHub Action will dispatch the workflow to build `@builder.io/qwik`, `@builder.io/qwik-city` and each of their submodules, build WASM and native bindings, and validate the package before publishing to NPM.
350350
7. If the build is successful and all tests and validation passes, the workflow will automatically publish to NPM, commit a git tag to the repo, and create a GitHub release.

LICENSE

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
MIT License
22

3+
Copyright (c) 2024 QwikDev
34
Copyright (c) 2021 BuilderIO
45

56
Permission is hereby granted, free of charge, to any person obtaining a copy

README.md

+12-12
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
<br>
22
<p align="center">
3-
<img alt="Qwik Logo" width="400" src="https://raw.githubusercontent.com/BuilderIO/qwik/main/.github/assets/qwik-logo.svg" />
3+
<img alt="Qwik Logo" width="400" src="https://raw.githubusercontent.com/QwikDev/qwik/main/.github/assets/qwik-logo.svg" />
44
</p>
55
<br>
66
<p align="center">
7-
<a href="https://github.com/BuilderIO/qwik/actions/workflows/ci.yml"><img src="https://github.com/BuilderIO/qwik/actions/workflows/ci.yml/badge.svg?event=push" alt="Qwik CI"></a>
8-
<a href="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/azure.yml"><img src="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/azure.yml/badge.svg" alt="Azure SWA Server"></a>
9-
<a href="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/cloudflare.yml"><img src="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/cloudflare.yml/badge.svg" alt="Cloudflare Pages Server"></a>
10-
<a href="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/netlify.yml"><img src="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/netlify.yml/badge.svg" alt="Netlify Server"></a>
11-
<a href="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/node.yml"><img src="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/node.yml/badge.svg" alt="Node Servers"></a>
12-
<a href="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/vercel-edge.yml"><img src="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/vercel-edge.yml/badge.svg" alt="Vercel Edge"></a>
13-
<a href="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/vercel-serverless.yml"><img src="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/vercel-serverless.yml/badge.svg" alt="Vercel Serverless"></a>
14-
<a href="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/cli.yml"><img src="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/cli.yml/badge.svg" alt="Create Qwik CLI"></a>
15-
<a href="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/deno.yml"><img src="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/deno.yml/badge.svg" alt="Deno Server"></a>
16-
<a href="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/aws.yml"><img src="https://github.com/BuilderIO/qwik-city-e2e/actions/workflows/aws.yml/badge.svg" alt="AWS Server"></a>
7+
<a href="https://github.com/QwikDev/qwik/actions/workflows/ci.yml"><img src="https://github.com/QwikDev/qwik/actions/workflows/ci.yml/badge.svg?event=push" alt="Qwik CI"></a>
8+
<a href="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/azure.yml"><img src="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/azure.yml/badge.svg" alt="Azure SWA Server"></a>
9+
<a href="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/cloudflare.yml"><img src="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/cloudflare.yml/badge.svg" alt="Cloudflare Pages Server"></a>
10+
<a href="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/netlify.yml"><img src="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/netlify.yml/badge.svg" alt="Netlify Server"></a>
11+
<a href="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/node.yml"><img src="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/node.yml/badge.svg" alt="Node Servers"></a>
12+
<a href="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/vercel-edge.yml"><img src="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/vercel-edge.yml/badge.svg" alt="Vercel Edge"></a>
13+
<a href="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/vercel-serverless.yml"><img src="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/vercel-serverless.yml/badge.svg" alt="Vercel Serverless"></a>
14+
<a href="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/cli.yml"><img src="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/cli.yml/badge.svg" alt="Create Qwik CLI"></a>
15+
<a href="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/deno.yml"><img src="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/deno.yml/badge.svg" alt="Deno Server"></a>
16+
<a href="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/aws.yml"><img src="https://github.com/QwikDev/qwik-city-e2e/actions/workflows/aws.yml/badge.svg" alt="AWS Server"></a>
1717
</p>
1818
<br>
1919
<br>
@@ -57,7 +57,7 @@ bun create qwik@latest
5757

5858
## Development
5959

60-
- See [Contributing.md](https://github.com/BuilderIO/qwik/blob/main/CONTRIBUTING.md) for more information on how to build Qwik from the source and contribute!
60+
- See [Contributing.md](https://github.com/QwikDev/qwik/blob/main/CONTRIBUTING.md) for more information on how to build Qwik from the source and contribute!
6161

6262
## Related
6363

packages/create-qwik/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ function checkNodeVersion() {
4444
if (Number(minorVersion) < 11) {
4545
console.error(
4646
red(
47-
`Node.js 18.11 or higher is REQUIRED. From Node 18.0.0 to 18.11.0, there is a bug preventing correct behaviour of Qwik. You are currently running Node.js ${version}. https://github.com/BuilderIO/qwik/issues/3035`
47+
`Node.js 18.11 or higher is REQUIRED. From Node 18.0.0 to 18.11.0, there is a bug preventing correct behaviour of Qwik. You are currently running Node.js ${version}. https://github.com/QwikDev/qwik/issues/3035`
4848
)
4949
);
5050
}

packages/create-qwik/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"version": "1.5.2",
55
"author": "Builder.io Team",
66
"bin": "./create-qwik.cjs",
7-
"bugs": "https://github.com/BuilderIO/qwik/issues",
7+
"bugs": "https://github.com/QwikDev/qwik/issues",
88
"devDependencies": {
99
"@clack/prompts": "^0.7.0",
1010
"@types/yargs": "^17.0.32",
@@ -35,7 +35,7 @@
3535
"main": "./index.cjs",
3636
"repository": {
3737
"type": "git",
38-
"url": "https://github.com/BuilderIO/qwik.git",
38+
"url": "https://github.com/QwikDev/qwik.git",
3939
"directory": "packages/create-qwik"
4040
}
4141
}

packages/docs/contributors.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ async function updateGithubCommits(filePath: string) {
3636
const gm = matter.read(filePath);
3737

3838
const repoPath = path.relative(rootDir, filePath).replace(/\\/g, '/');
39-
const url = new URL(`https://api.github.com/repos/BuilderIO/qwik/commits`);
39+
const url = new URL(`https://api.github.com/repos/QwikDev/qwik/commits`);
4040
url.searchParams.set('since', new Date('2022-01-01').toISOString());
4141
url.searchParams.set('path', repoPath);
4242

packages/docs/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "Qwik Docs Site",
44
"version": "0.0.1",
55
"author": "Builder.io Team",
6-
"bugs": "https://github.com/BuilderIO/qwik",
6+
"bugs": "https://github.com/QwikDev/qwik",
77
"devDependencies": {
88
"@algolia/autocomplete-core": "1.7.4",
99
"@algolia/client-search": "4.14.3",

packages/docs/scripts/pages.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@
104104
{
105105
"href": "https://qwik.dev",
106106
"tags": "site",
107-
"repo": "https://github.com/BuilderIO/qwik/tree/main/packages/docs"
107+
"repo": "https://github.com/QwikDev/qwik/tree/main/packages/docs"
108108
},
109109
{
110110
"href": "https://pulsestax.com/",

packages/docs/src/components/code-sandbox/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ export default component$<{
6363
<ul>
6464
<li class="edit">
6565
<a
66-
href={'https://github.com/BuilderIO/qwik/blob/main/packages/docs/' + (url || src)}
66+
href={'https://github.com/QwikDev/qwik/blob/main/packages/docs/' + (url || src)}
6767
rel="noopener"
6868
target="_blank"
6969
title="edit this snippet"

packages/docs/src/components/header/header.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ export const Header = component$(() => {
127127
<ThemeToggle />
128128
</li>
129129
<li>
130-
<a href="https://github.com/BuilderIO/qwik" target="_blank" title="GitHub">
130+
<a href="https://github.com/QwikDev/qwik" target="_blank" title="GitHub">
131131
<span class="lg:hidden">GitHub</span>
132132
<span class="hidden lg:block">
133133
<GithubLogo width={22} height={22} />

packages/docs/src/components/on-this-page/on-this-page.tsx

+3-3
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ export const OnThisPage = component$(() => {
9494

9595
const githubEditRoute = makeEditPageUrl(url.pathname);
9696

97-
const editUrl = `https://github.com/BuilderIO/qwik/edit/main/packages/docs/src/routes/${githubEditRoute}/index.mdx`;
97+
const editUrl = `https://github.com/QwikDev/qwik/edit/main/packages/docs/src/routes/${githubEditRoute}/index.mdx`;
9898

9999
const OnThisPageMore = [
100100
{
@@ -103,7 +103,7 @@ export const OnThisPage = component$(() => {
103103
icon: EditIcon,
104104
},
105105
{
106-
href: 'https://github.com/BuilderIO/qwik/issues/new/choose',
106+
href: 'https://github.com/QwikDev/qwik/issues/new/choose',
107107
text: 'Create an issue',
108108
icon: AlertIcon,
109109
},
@@ -113,7 +113,7 @@ export const OnThisPage = component$(() => {
113113
icon: ChatIcon,
114114
},
115115
{
116-
href: 'https://github.com/BuilderIO/qwik',
116+
href: 'https://github.com/QwikDev/qwik',
117117
text: 'GitHub',
118118
icon: GithubLogo,
119119
},

packages/docs/src/components/qwik-gpt/search.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ export async function resolveContext(docsData: any[]) {
144144
for (const result of docsData) {
145145
const commit_hash = result.commit_hash;
146146
const file_path = result.file;
147-
const url = `https://raw.githubusercontent.com/BuilderIO/qwik/${commit_hash}/${file_path}`;
147+
const url = `https://raw.githubusercontent.com/QwikDev/qwik/${commit_hash}/${file_path}`;
148148
if (!files.has(url)) {
149149
files.set(
150150
url,

packages/docs/src/routes/(ecosystem)/ecosystem.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
},
278278
{
279279
"title": "GitHub",
280-
"href": "https://github.com/BuilderIO/qwik",
280+
"href": "https://github.com/QwikDev/qwik",
281281
"imgSrc": "/ecosystem/github.svg"
282282
},
283283
{

packages/docs/src/routes/(ecosystem)/ecosystem/index.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ export default component$(() => {
143143
))}
144144
<AddIntegrationItem
145145
title="Add A Course"
146-
href="https://github.com/BuilderIO/qwik/blob/main/packages/docs/src/routes/(ecosystem)/media/index.tsx"
146+
href="https://github.com/QwikDev/qwik/blob/main/packages/docs/src/routes/(ecosystem)/media/index.tsx"
147147
/>
148148
</ul>
149149
</section>
@@ -200,7 +200,7 @@ export default component$(() => {
200200
))}
201201
<AddIntegrationItem
202202
title="Add A Podcast"
203-
href="https://github.com/BuilderIO/qwik/blob/main/packages/docs/src/routes/(ecosystem)/media/index.tsx"
203+
href="https://github.com/QwikDev/qwik/blob/main/packages/docs/src/routes/(ecosystem)/media/index.tsx"
204204
/>
205205
</ul>
206206
</section>
@@ -229,7 +229,7 @@ export default component$(() => {
229229
))}
230230
<AddIntegrationItem
231231
title="Add A Showcase"
232-
href="https://github.com/BuilderIO/qwik/edit/main/packages/docs/scripts/pages.json"
232+
href="https://github.com/QwikDev/qwik/edit/main/packages/docs/scripts/pages.json"
233233
/>
234234
</ul>
235235
</section>
@@ -258,7 +258,7 @@ export default component$(() => {
258258
))}
259259
<AddIntegrationItem
260260
title="Add A Presentation"
261-
href="https://github.com/BuilderIO/qwik/blob/main/packages/docs/src/routes/(ecosystem)/media/index.tsx"
261+
href="https://github.com/QwikDev/qwik/blob/main/packages/docs/src/routes/(ecosystem)/media/index.tsx"
262262
/>
263263
</ul>
264264
</section>

packages/docs/src/routes/(ecosystem)/media/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -573,7 +573,7 @@ export default component$(() => {
573573
<p>This page missing any great resources or in need of an update?</p>
574574
<p>
575575
<a
576-
href="https://github.com/BuilderIO/qwik/edit/main/packages/docs/src/routes/(ecosystem)/media/index.tsx"
576+
href="https://github.com/QwikDev/qwik/edit/main/packages/docs/src/routes/(ecosystem)/media/index.tsx"
577577
target="_blank"
578578
class="edit-page"
579579
>

packages/docs/src/routes/(ecosystem)/showcase/generated-pages.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@
404404
},
405405
"href": "https://qwik.dev",
406406
"tags": "site",
407-
"repo": "https://github.com/BuilderIO/qwik/tree/main/packages/docs"
407+
"repo": "https://github.com/QwikDev/qwik/tree/main/packages/docs"
408408
},
409409
{
410410
"title": "Pulsestax | Check the uptime and pulse of any website",

packages/docs/src/routes/(ecosystem)/showcase/index.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ export default component$(() => {
3838
<p>This page missing any great site or in need of an update?</p>
3939
<p>
4040
<a
41-
href="https://github.com/BuilderIO/qwik/edit/main/packages/docs/scripts/pages.json"
41+
href="https://github.com/QwikDev/qwik/edit/main/packages/docs/scripts/pages.json"
4242
target="_blank"
4343
class="edit-page"
4444
>

0 commit comments

Comments
 (0)