Skip to content

Commit faf54cf

Browse files
committed
chore: pub beta
1 parent b0fd304 commit faf54cf

File tree

12 files changed

+67
-20
lines changed

12 files changed

+67
-20
lines changed

packages/jsx-compiler/CHANGELOG.md

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,15 @@
11
# Changelog
22

3-
## 【0.4.38-x] Unreleased
3+
## [0.4.38] Beta
4+
5+
### Fixed
6+
7+
- Fix: Solve the problem that the bytedance microapp can't pass through the className property by replace the native miniapp component tag in the compiler. image, icon, scroll-view.
8+
9+
### Added
410

511
- Feat: compat props-default-to-true in WeChat
612
- Feat: add scroll-view event map of bytedance, like onScroll -> bindscroll
7-
- Fix: Solve the problem that the bytedance microapp can't pass through the className property by replace the native miniapp component tag in the compiler. image, icon, scroll-view.
813

914
## [0.4.37]
1015

packages/jsx-compiler/package.json

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,12 @@
3232
"devDependencies": {
3333
"handlebars": "^4.5.0",
3434
"jest": "^24.5.0"
35+
},
36+
"repository": {
37+
"type": "git",
38+
"url": "[email protected]:raxjs/miniapp.git"
39+
},
40+
"publishConfig": {
41+
"registry": "https://registry.npmjs.org"
3542
}
3643
}

packages/jsx2mp-loader/CHANGELOG.md

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,18 @@
11
# Changelog
22

3-
## [0.4.37] UnRelease
3+
## [0.4.37] Beta
4+
5+
### Fixed
6+
7+
- Fix: getHighestPriorityPackage() 逻辑修正,增加项目直接依赖该包的校验,通过时才会去尝试查找项目依赖、优先启用
8+
- Fix: support platform-loader
9+
- Fix: script-loader exclude 'plugin://xx/comp' in usingComponents
10+
11+
### Added
412

513
- Feat: support remove unused import and require of App、Page、Component、Npm package
614
- Feat: miniappConfig compat the case where the entry of component use multiple platform like index.wechat.js, index.ali.js. And don't change the filed main that can't be resolved
715
- Feat: hackRegeneratorRuntimeFunction in ali miniapp of copyNpm
8-
- Fix: getHighestPriorityPackageJSON() 逻辑修正,增加项目直接依赖该包的校验,通过时才会去尝试查找项目依赖、优先启用
9-
- Fix: support platform-loader
10-
- Fix: script-loader exclude 'plugin://xx/comp' in usingComponents
1116

1217
## [0.4.36] - 2022-06-22
1318

packages/jsx2mp-loader/package.json

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
"csso": "^3.5.1",
2727
"enhanced-resolve": "^4.1.1",
2828
"fs-extra": "^8.1.0",
29-
"jsx-compiler": "^0.4.38-2",
29+
"jsx-compiler": "0.4.38-3",
3030
"less": "^4.0.0",
3131
"loader-utils": "^1.2.3",
3232
"miniapp-builder-shared": "^0.3.0",
@@ -37,5 +37,11 @@
3737
"stylus": "^0.54.7",
3838
"terser": "^4.3.8"
3939
},
40-
"repository": "[email protected]:raxjs/miniapp.git"
40+
"repository": {
41+
"type": "git",
42+
"url": "[email protected]:raxjs/miniapp.git"
43+
},
44+
"publishConfig": {
45+
"registry": "https://registry.npmjs.org"
46+
}
4147
}

packages/jsx2mp-loader/src/babel-plugin-handle-regeneratorRuntime.js

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,5 @@
11
/**
22
* @Author 阿劭 [email protected]
3-
* @Date 2023-04-10 18:21:49
4-
* @LastEditors 阿劭 [email protected]
5-
* @LastEditTime 2023-04-10 21:33:21
63
* @Description 小程序严格模式下报错 `Function(...) is not function` 兼容
74
* https://aliyuque.antfin.com/tianjie.stj/nivfgf/wi0gk43l6otk3lam?singleDoc#tnMFv
85
*/

packages/miniapp-compile-config/CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# Changelog
22

3-
## [0.3.4] Unreleased
3+
## [0.3.4] Beta
4+
5+
### Added
46

57
- Feat: support USE_FLI_RAX and RAX_RUNTIME_ALIAS, for `clam` internally change rax to FMini, especially for the @ali/fli-jsx2mp-runtime
68

packages/miniapp-compile-config/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,5 +36,8 @@
3636
"terser": "^4.8.0",
3737
"jsx2mp-runtime": "^0.4.18",
3838
"ts-loader": "^8.0.0"
39+
},
40+
"publishConfig": {
41+
"registry": "https://registry.npmjs.org"
3942
}
4043
}

packages/miniapp-render/CHANGELOG.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,17 @@
11
# Changelog
22

3-
## [2.8.10] - 2023-08-23
3+
## [2.8.11] Beta
44

55
### Added
66

7+
- [2.8.10-1] Support `page-container` native component in wechat-miniprogram
8+
9+
10+
## [2.8.10] - 2023-08-23
11+
12+
### Fixed
13+
714
- Support onChooseAvatar event in buton in wechat
8-
- Support `page-container` native component in wechat-miniprogram
915

1016
## [2.8.9] - 2022-03-23
1117

packages/miniapp-render/package.json

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "miniapp-render",
3-
"version": "2.8.10",
3+
"version": "2.8.11-0",
44
"description": "DOM simulator for MiniApp",
55
"files": [
66
"dist"
@@ -29,13 +29,14 @@
2929
"miniprogram": "dist/wechat",
3030
"repository": {
3131
"type": "git",
32-
"url": "https://github.com/alibaba/rax.git"
32+
"url": "git@github.com:raxjs/miniapp.git"
3333
},
3434
"author": "Rax Team",
3535
"license": "MIT",
3636
"devDependencies": {
3737
"@babel/core": "^7.4.5",
3838
"@babel/plugin-proposal-class-properties": "^7.7.4",
39+
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
3940
"@babel/plugin-transform-runtime": "^7.7.6",
4041
"@babel/preset-env": "^7.4.5",
4142
"@babel/runtime": "^7.7.7",
@@ -54,5 +55,8 @@
5455
"rollup-plugin-replace": "^2.2.0",
5556
"rollup-plugin-terser": "^5.3.0",
5657
"universal-env": "^3.2.0"
58+
},
59+
"publishConfig": {
60+
"registry": "https://registry.npmjs.org"
5761
}
5862
}

packages/miniapp-render/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function getBabelConfig(platform) {
2727
],
2828
plugins: [
2929
'@babel/plugin-proposal-class-properties',
30-
['@babel/plugin-proposal-private-methods', { 'loose': false }],
30+
['@babel/plugin-transform-private-methods', { 'loose': false }],
3131
['@babel/plugin-proposal-private-property-in-object', { 'loose': false }],
3232
['./scripts/platform-plugin', { platform }]
3333
]

0 commit comments

Comments
 (0)