unpkg-white-list 1.0.0 → 1.2.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.
- package/CHANGELOG.md +14 -0
- package/README.md +11 -1
- package/package.json +396 -6238
- package/test/index.js +16 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.2.0](https://github.com/cnpm/unpkg-white-list/compare/v1.1.0...v1.2.0) (2024-05-18)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* support allow scopes ([#3](https://github.com/cnpm/unpkg-white-list/issues/3)) ([6e1b821](https://github.com/cnpm/unpkg-white-list/commit/6e1b821e63136ade3430fa3351a51eb07d249094))
|
|
9
|
+
|
|
10
|
+
## [1.1.0](https://github.com/cnpm/unpkg-white-list/compare/v1.0.0...v1.1.0) (2024-05-18)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* 新增小程序云 sdk ([#2](https://github.com/cnpm/unpkg-white-list/issues/2)) ([a5d8a05](https://github.com/cnpm/unpkg-white-list/commit/a5d8a05070b4f2c25c543569b4716153f5c2d20f))
|
|
16
|
+
|
|
3
17
|
## 1.0.0 (2024-05-18)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
# unpkg-white-list
|
|
2
2
|
|
|
3
3
|
[](https://npmjs.org/package/unpkg-white-list)
|
|
4
|
-
[](https://github.com/cnpm/unpkg-white-list/actions/workflows/nodejs.yml)
|
|
5
5
|
|
|
6
6
|
[npmmirror.com](https://npmmirror.com) 允许开启 [unpkg 功能](https://www.yuque.com/egg/cnpm/files)的白名单列表,避免 https://x.com/fengmk2/status/1791498406923215020 类似问题
|
|
7
7
|
|
|
@@ -22,6 +22,16 @@
|
|
|
22
22
|
}
|
|
23
23
|
```
|
|
24
24
|
|
|
25
|
+
当然你发布的是 scoped package,可以直接添加 scope 到白名单 `allowScopes`:
|
|
26
|
+
|
|
27
|
+
```json
|
|
28
|
+
"allowScopes": [
|
|
29
|
+
...
|
|
30
|
+
"@eggjs",
|
|
31
|
+
...
|
|
32
|
+
]
|
|
33
|
+
```
|
|
34
|
+
|
|
25
35
|
2、修改完成后提交一个 `Pull Request` 合并到 master 分支,等待 Review,合并后会自动发布,预计最长 5 分钟后会全网生效。
|
|
26
36
|
|
|
27
37
|
## License
|