@esmx/fetch 3.0.0-rc.62 → 3.0.0-rc.64

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <img src="https://www.esmnext.com/logo.svg?t=2025" width="120" alt="Esmx Logo" />
2
+ <img src="https://esmx.dev/logo.svg?t=2025" width="120" alt="Esmx Logo" />
3
3
  <h1>@esmx/fetch</h1>
4
4
 
5
5
  <div>
@@ -9,7 +9,7 @@
9
9
  <a href="https://github.com/esmnext/esmx/actions/workflows/build.yml">
10
10
  <img src="https://github.com/esmnext/esmx/actions/workflows/build.yml/badge.svg" alt="Build" />
11
11
  </a>
12
- <a href="https://www.esmnext.com/coverage/">
12
+ <a href="https://esmx.dev/coverage/">
13
13
  <img src="https://img.shields.io/badge/coverage-live%20report-brightgreen" alt="Coverage Report" />
14
14
  </a>
15
15
  <a href="https://nodejs.org/">
@@ -44,7 +44,7 @@ npm install @esmx/fetch
44
44
 
45
45
  ## 📚 Documentation
46
46
 
47
- Visit the [official documentation](https://www.esmnext.com) for detailed usage guides and API reference.
47
+ Visit the [official documentation](https://esmx.dev) for detailed usage guides and API reference.
48
48
 
49
49
  ## 📄 License
50
50
 
package/README.zh-CN.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <img src="https://www.esmnext.com/logo.svg?t=2025" width="120" alt="Esmx Logo" />
2
+ <img src="https://esmx.dev/logo.svg?t=2025" width="120" alt="Esmx Logo" />
3
3
  <h1>@esmx/fetch</h1>
4
4
 
5
5
  <div>
@@ -9,7 +9,7 @@
9
9
  <a href="https://github.com/esmnext/esmx/actions/workflows/build.yml">
10
10
  <img src="https://github.com/esmnext/esmx/actions/workflows/build.yml/badge.svg" alt="Build" />
11
11
  </a>
12
- <a href="https://www.esmnext.com/coverage/">
12
+ <a href="https://esmx.dev/coverage/">
13
13
  <img src="https://img.shields.io/badge/coverage-live%20report-brightgreen" alt="Coverage Report" />
14
14
  </a>
15
15
  <a href="https://nodejs.org/">
@@ -44,7 +44,7 @@ npm install @esmx/fetch
44
44
 
45
45
  ## 📚 文档
46
46
 
47
- 访问[官方文档](https://www.esmnext.com)获取详细的使用指南和 API 参考。
47
+ 访问[官方文档](https://esmx.dev)获取详细的使用指南和 API 参考。
48
48
 
49
49
  ## 📄 许可证
50
50
 
@@ -11,7 +11,7 @@ test("base", async () => {
11
11
  await fetchPkgsWithProgress({
12
12
  outputDir,
13
13
  axiosReqCfg: {
14
- baseURL: "https://www.esmnext.com",
14
+ baseURL: "https://esmx.dev",
15
15
  timeout: 4500
16
16
  },
17
17
  packs: urls.map((url) => ({ url, name: url.split("/")[0] }))
package/package.json CHANGED
@@ -41,7 +41,7 @@
41
41
  "unbuild": "3.6.0",
42
42
  "vitest": "3.2.4"
43
43
  },
44
- "version": "3.0.0-rc.62",
44
+ "version": "3.0.0-rc.64",
45
45
  "type": "module",
46
46
  "private": false,
47
47
  "exports": {
@@ -60,5 +60,5 @@
60
60
  "template",
61
61
  "public"
62
62
  ],
63
- "gitHead": "e5a1e811403bf1db4437dff88c3ea8bc6b576f64"
63
+ "gitHead": "8c103750d1e623fa4fa23b6ed9149f39e4a9bd58"
64
64
  }
package/src/fetch.test.ts CHANGED
@@ -12,7 +12,7 @@ test('base', async () => {
12
12
  await fetchPkgsWithProgress({
13
13
  outputDir,
14
14
  axiosReqCfg: {
15
- baseURL: 'https://www.esmnext.com',
15
+ baseURL: 'https://esmx.dev',
16
16
  timeout: 4500
17
17
  },
18
18
  packs: urls.map((url) => ({ url, name: url.split('/')[0] }))
package/src/index.ts CHANGED
@@ -14,7 +14,7 @@ const outputDir = path.join(path.dirname(fileURLToPath(import.meta.url)), 'outpu
14
14
  fetchPkgsWithProgress({
15
15
  outputDir,
16
16
  axiosReqCfg: {
17
- baseURL: 'https://www.esmnext.com/',
17
+ baseURL: 'https://esmx.dev/',
18
18
  timeout: 10000,
19
19
  },
20
20
  packs: urls.map(url => ({ url, name: url.split('/')[0] })),