Skip to content

Commit 783a124

Browse files
committed
chore: migrate repository references to SwiftGGTeam
1 parent 31dac26 commit 783a124

6 files changed

Lines changed: 14 additions & 14 deletions

File tree

README-CN.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ node skills/wwdc-quick-look/scripts/query.mjs transcript --year 2025 --code 290
6262
查询脚本默认读取公开 CDN 数据:
6363

6464
```text
65-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/
65+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/
6666
```
6767

6868
本地测试时可以覆盖数据源:
@@ -105,16 +105,16 @@ node scripts/build-index.mjs
105105

106106
```text
107107
# 所有已发布年份目录
108-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/index.json
108+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/index.json
109109
110110
# 单年 session 元数据
111-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/wwdc25/raw_data.json
111+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/raw_data.json
112112
113113
# Transcript manifest
114-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/wwdc25/transcripts-en/_manifest.json
114+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/transcripts-en/_manifest.json
115115
116116
# 单个 transcript
117-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/wwdc25/transcripts-en/290.txt
117+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/transcripts-en/290.txt
118118
```
119119

120120
jsDelivr 会缓存路径。需要字节级稳定归档时,请使用绑定 commit 的 URL。

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ node skills/wwdc-quick-look/scripts/query.mjs transcript --year 2025 --code 290
6262
By default the query script reads the published CDN dataset:
6363

6464
```text
65-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/
65+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/
6666
```
6767

6868
For local testing, point it at another base URL:
@@ -105,16 +105,16 @@ The combined crawl fetches public Apple Developer collection cards, enriches eac
105105

106106
```text
107107
# Catalog of every published year
108-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/index.json
108+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/index.json
109109
110110
# Per-year session metadata
111-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/wwdc25/raw_data.json
111+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/raw_data.json
112112
113113
# Transcript manifest
114-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/wwdc25/transcripts-en/_manifest.json
114+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/transcripts-en/_manifest.json
115115
116116
# Single transcript
117-
https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/wwdc25/transcripts-en/290.txt
117+
https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/wwdc25/transcripts-en/290.txt
118118
```
119119

120120
jsDelivr caches paths. Use a commit-pinned URL when byte-stable archival output matters.

skills/wwdc-quick-look/SKILL.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ description: |
1717

1818
## 数据来源
1919

20-
所有数据来自 `https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/`
20+
所有数据来自 `https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/`
2121
由 GitHub Actions 每日自动刷新:
2222

2323
- `index.json` — 可用年份目录

skills/wwdc-quick-look/references/data-schema.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# WWDC Dataset Schema
22

3-
Published at `https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data/`.
3+
Published at `https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data/`.
44

55
## index.json
66

skills/wwdc-quick-look/scripts/query.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* node query.mjs transcript --year 2025 --code 238 [--limit 20]
1515
*/
1616

17-
const BASE = process.env.WWDC_QUICK_LOOK_BASE_URL ?? 'https://cdn.jsdelivr.net/gh/OneeMe/wwdc-quick-look@main/data';
17+
const BASE = process.env.WWDC_QUICK_LOOK_BASE_URL ?? 'https://cdn.jsdelivr.net/gh/SwiftGGTeam/wwdc-quick-look@main/data';
1818

1919
async function fetchJson(url) {
2020
const r = await fetch(url);

test/wwdc-quick-look/wwdc-quick-look-query.test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ async function runQuery(baseUrl, args) {
8989
describe('wwdc-quick-look query script', () => {
9090
it('defaults to the renamed GitHub repository on the main branch', async () => {
9191
const source = await fs.readFile(SCRIPT, 'utf8');
92-
assert.match(source, /https:\/\/cdn\.jsdelivr\.net\/gh\/OneeMe\/wwdc-quick-look@main\/data/);
92+
assert.match(source, /https:\/\/cdn\.jsdelivr\.net\/gh\/SwiftGGTeam\/wwdc-quick-look@main\/data/);
9393
});
9494

9595
it('shows resources and code snippet counts in session details', async () => {

0 commit comments

Comments
 (0)