hylid-bridge 2.0.0 → 2.1.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 +26 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,29 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# [2.1.0](https://code.alipay.com/ant-ife/hylid-bridge/compare/v1.1.0...v2.1.0) (2022-04-25)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
### Features
|
|
10
|
+
|
|
11
|
+
* 调整代码生成逻辑 ([4f16547](https://code.alipay.com/ant-ife/hylid-bridge/commits/4f165479e85a1103b52128b5463b177b63d64170))
|
|
12
|
+
* 调整发布相关配置 ([041fe83](https://code.alipay.com/ant-ife/hylid-bridge/commits/041fe83c8033da731fd5ebcaa5a86060115be90c))
|
|
13
|
+
* 脚本支持 includes 字段 ([0e85f4a](https://code.alipay.com/ant-ife/hylid-bridge/commits/0e85f4aa384fd6fa66081fd56cf85a2210fbc001))
|
|
14
|
+
* 接入 babel 插件 ([fdb8885](https://code.alipay.com/ant-ife/hylid-bridge/commits/fdb8885c6d7f16b8fbc528540ff3b397096da60b))
|
|
15
|
+
* 添加 rpc ([eb449d9](https://code.alipay.com/ant-ife/hylid-bridge/commits/eb449d98e8e31e09d5fc9c062cc7c276a2e8c691))
|
|
16
|
+
* 统一版本号 ([7539c2f](https://code.alipay.com/ant-ife/hylid-bridge/commits/7539c2f9fa4646fde964b609259e61d5e008c511))
|
|
17
|
+
* 修正编译 ([08bef15](https://code.alipay.com/ant-ife/hylid-bridge/commits/08bef15dcb7921a3d916dec7b3fd1719653f85c7))
|
|
18
|
+
* 引入 miniapp-web-jsapi ([65faac8](https://code.alipay.com/ant-ife/hylid-bridge/commits/65faac80fa3d2a5be531ac876e62ed4dddd005bd))
|
|
19
|
+
* 增加较为完整的国际端目录 ([76461a9](https://code.alipay.com/ant-ife/hylid-bridge/commits/76461a9fc108effa55706cfb5db565834dcd33c6))
|
|
20
|
+
* alert hideToast showToast request ([8fd0cad](https://code.alipay.com/ant-ife/hylid-bridge/commits/8fd0cad7157b1c6063955df2e9aba4b2c944d09a))
|
|
21
|
+
* bridge 针对容器纬度,打不同的 umd 包 ([4f4578f](https://code.alipay.com/ant-ife/hylid-bridge/commits/4f4578fde52d07c5e91e388a24d08868b100b619))
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
1
27
|
# 1.1.0
|
|
2
28
|
|
|
3
29
|
## MiniProgram
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hylid-bridge",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"main": "lib/index.js",
|
|
5
5
|
"description": "Unite Api For AliPay Plus MiniProgram Project.",
|
|
6
6
|
"scripts": {
|
|
@@ -22,17 +22,17 @@
|
|
|
22
22
|
"miniapp-web-jsapi": "^1.0.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"cross-env": "^7.0.3",
|
|
26
25
|
"@babel/preset-typescript": "^7.16.0",
|
|
26
|
+
"@goldfishjs/pre-build": "^2.12.1",
|
|
27
27
|
"babel-loader": "^8.2.3",
|
|
28
|
+
"cross-env": "^7.0.3",
|
|
28
29
|
"gulp": "4.0.2",
|
|
29
30
|
"gulp-babel": "8.0.0",
|
|
30
31
|
"gulp-plumber": "^1.2.1",
|
|
31
32
|
"gulp-typescript": "5.0.1",
|
|
32
33
|
"webpack": "^5.70.0",
|
|
33
34
|
"webpack-cli": "^4.9.2",
|
|
34
|
-
"webpack-dev-server": "^4.7.4"
|
|
35
|
-
"@goldfishjs/pre-build": "^2.12.1"
|
|
35
|
+
"webpack-dev-server": "^4.7.4"
|
|
36
36
|
},
|
|
37
37
|
"sideEffects": false,
|
|
38
38
|
"registry": "https://registry.npmjs.org/"
|