unpkg-white-list 1.210.0 → 1.212.0

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.
Files changed (2) hide show
  1. package/README.md +4 -2
  2. package/package.json +7 -2
package/README.md CHANGED
@@ -53,7 +53,8 @@
53
53
  用 CLI 添加你想开启 unpkg 文件同步的 npm 包名和版本号,全量同步版本号可以设置为 `*`,以同步 [urllib](https://npmmirror.com/package/urllib) 为示例:
54
54
 
55
55
  ```bash
56
- npm run add -- "--pkg=urllib:*" # 同步 urllib 所有版本
56
+ # npm run add -- --pkg={package name}[:{version range}]
57
+ npm run add -- "--pkg=urllib" # 同步 urllib 所有版本
57
58
  # or
58
59
  npm run add -- "--pkg=urllib:1.0.0" # 同步 urllib 1.0.0 版本
59
60
  # or
@@ -98,7 +99,8 @@ _你将会看到 package.json 文件中的 `allowScopes` 字段被更新,如
98
99
  用 CLI 添加你想开启 npmmirror sync package tgz 超大文件同步的 npm 包名和版本号,全量同步版本号可以设置为 `*`,以同步 [aws-cdk-lib](https://npmmirror.com/package/aws-cdk-lib) 为示例:
99
100
 
100
101
  ```bash
101
- npm run add -- "--large-pkg=aws-cdk-lib:*" # 同步 aws-cdk-lib 所有版本
102
+ # npm run add -- --large-pkg={package name}[:{version range}]
103
+ npm run add -- "--large-pkg=aws-cdk-lib" # 同步 aws-cdk-lib 所有版本
102
104
  # or
103
105
  npm run add -- "--large-pkg=aws-cdk-lib:1.0.0" # 同步 aws-cdk-lib 1.0.0 版本
104
106
  # or
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unpkg-white-list",
3
- "version": "1.210.0",
3
+ "version": "1.212.0",
4
4
  "description": "npmmirror 允许开启 unpkg 功能的白名单列表,避免 https://x.com/fengmk2/status/1791498406923215020 类似问题",
5
5
  "main": "index.js",
6
6
  "files": [],
@@ -18944,15 +18944,20 @@
18944
18944
  }
18945
18945
  },
18946
18946
  "allowLargeScopes": [
18947
+ "@fonixtree",
18947
18948
  "@next",
18949
+ "@openai",
18948
18950
  "@swc",
18949
18951
  "@utoo"
18950
18952
  ],
18951
18953
  "allowLargePackages": {
18954
+ "ant-design-vue": {
18955
+ "version": "*"
18956
+ },
18952
18957
  "aws-cdk-lib": {
18953
18958
  "version": "*"
18954
18959
  },
18955
- "ant-design-vue": {
18960
+ "viewport-cli": {
18956
18961
  "version": "*"
18957
18962
  }
18958
18963
  },