Skip to content
This repository was archived by the owner on Mar 7, 2024. It is now read-only.

Commit 65b4592

Browse files
author
sydeEvans
committed
v2.15.0
1 parent 6b4ed37 commit 65b4592

46 files changed

Lines changed: 204 additions & 83 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,21 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.15.0](https://github.com/remaxjs/remax/compare/v2.14.1...v2.15.0) (2021-07-30)
7+
8+
### Bug Fixes
9+
10+
- 修复用例 ([d31160c](https://github.com/remaxjs/remax/commit/d31160c2494a5b3bd5572a3019166db3ea877d7e))
11+
- 修复用例 ([6c4dd01](https://github.com/remaxjs/remax/commit/6c4dd010c63b18cc509918ed8ea98b4ab1f64ce4))
12+
13+
### Features
14+
15+
- 支持 buildMiniComponent,以 webpack 方式构建小程序自定义组件 ([e5ed805](https://github.com/remaxjs/remax/commit/e5ed805191ad08ef269e2f4fa2d7ffa8a580862a))
16+
- 组件构建的命令行工具 — build 命令 ([dba8ab3](https://github.com/remaxjs/remax/commit/dba8ab38481146cb01f4d108e86afeb044e42d6e))
17+
- 组件构建的命令行工具 — 命令行参数支持 ([5698b77](https://github.com/remaxjs/remax/commit/5698b77202a2e5390b5f82050e79937e563ee7dc))
18+
- 组件构建的命令行工具 — 命令行参数支持 ([c4698eb](https://github.com/remaxjs/remax/commit/c4698eb4dd75d59529c60c26fa01dc08493033a2))
19+
- 组件构建的命令行工具 — 调整测试用例 ([4ae3f2b](https://github.com/remaxjs/remax/commit/4ae3f2b5df2c2866526e58441f1c581ec46584da))
20+
621
## [2.14.1](https://github.com/remaxjs/remax/compare/v2.14.0...v2.14.1) (2021-07-20)
722

823
### Bug Fixes

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"private": false
88
}
99
},
10-
"version": "2.14.1",
10+
"version": "2.15.0",
1111
"npmClient": "yarn",
1212
"useWorkspaces": true
1313
}

packages/babel-plugin-remax-host-component/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.15.0](https://github.com/remaxjs/remax/compare/v2.14.1...v2.15.0) (2021-07-30)
7+
8+
**Note:** Version bump only for package babel-plugin-remax-host-component
9+
610
## [2.14.1](https://github.com/remaxjs/remax/compare/v2.14.0...v2.14.1) (2021-07-20)
711

812
**Note:** Version bump only for package babel-plugin-remax-host-component

packages/babel-plugin-remax-host-component/package.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-plugin-remax-host-component",
3-
"version": "2.14.1",
3+
"version": "2.15.0",
44
"description": "使用真正的 React 构建跨平台小程序",
55
"author": "Wei Zhu <yesmeck@gmail.com>",
66
"homepage": "https://remaxjs.org",
@@ -28,13 +28,13 @@
2828
"@babel/helper-plugin-utils": "^7.10.4",
2929
"@babel/traverse": "^7.11.0",
3030
"@babel/types": "^7.11.0",
31-
"@remax/macro": "2.14.1",
32-
"@remax/shared": "2.14.1"
31+
"@remax/macro": "2.15.0",
32+
"@remax/shared": "2.15.0"
3333
},
3434
"devDependencies": {
3535
"@babel/core": "^7.11.0",
3636
"@babel/plugin-syntax-jsx": "^7.10.4",
37-
"@remax/build-store": "2.14.1"
37+
"@remax/build-store": "2.15.0"
3838
},
3939
"gitHead": "df52bc6f39ef4b222b7da44c4e3c5744e4196a43"
4040
}

packages/babel-plugin-remax-lifecycle/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.15.0](https://github.com/remaxjs/remax/compare/v2.14.1...v2.15.0) (2021-07-30)
7+
8+
**Note:** Version bump only for package babel-plugin-remax-lifecycle
9+
610
## [2.14.1](https://github.com/remaxjs/remax/compare/v2.14.0...v2.14.1) (2021-07-20)
711

812
**Note:** Version bump only for package babel-plugin-remax-lifecycle

packages/babel-plugin-remax-lifecycle/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-plugin-remax-lifecycle",
3-
"version": "2.14.1",
3+
"version": "2.15.0",
44
"description": "使用真正的 React 构建跨平台小程序",
55
"author": "Wei Zhu <yesmeck@gmail.com>",
66
"homepage": "https://remaxjs.org",
@@ -28,11 +28,11 @@
2828
"@babel/helper-plugin-utils": "^7.10.4",
2929
"@babel/traverse": "^7.11.0",
3030
"@babel/types": "^7.11.0",
31-
"@remax/shared": "2.14.1"
31+
"@remax/shared": "2.15.0"
3232
},
3333
"devDependencies": {
3434
"@babel/core": "^7.11.0",
35-
"@remax/build-store": "2.14.1"
35+
"@remax/build-store": "2.15.0"
3636
},
3737
"gitHead": "df52bc6f39ef4b222b7da44c4e3c5744e4196a43"
3838
}

packages/babel-plugin-remax-regenerator-runtime/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.15.0](https://github.com/remaxjs/remax/compare/v2.14.1...v2.15.0) (2021-07-30)
7+
8+
**Note:** Version bump only for package babel-plugin-remax-regenerator-runtime
9+
610
## [2.14.1](https://github.com/remaxjs/remax/compare/v2.14.0...v2.14.1) (2021-07-20)
711

812
**Note:** Version bump only for package babel-plugin-remax-regenerator-runtime

packages/babel-plugin-remax-regenerator-runtime/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-plugin-remax-regenerator-runtime",
3-
"version": "2.14.1",
3+
"version": "2.15.0",
44
"description": "使用真正的 React 构建跨平台小程序",
55
"author": "Wei Zhu <yesmeck@gmail.com>",
66
"homepage": "https://remaxjs.org",

packages/babel-plugin-remax-turbo-render/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,10 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [2.15.0](https://github.com/remaxjs/remax/compare/v2.14.1...v2.15.0) (2021-07-30)
7+
8+
**Note:** Version bump only for package babel-plugin-remax-turbo-render
9+
610
## [2.14.1](https://github.com/remaxjs/remax/compare/v2.14.0...v2.14.1) (2021-07-20)
711

812
**Note:** Version bump only for package babel-plugin-remax-turbo-render

packages/babel-plugin-remax-turbo-render/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "babel-plugin-remax-turbo-render",
3-
"version": "2.14.1",
3+
"version": "2.15.0",
44
"description": "使用真正的 React 构建跨平台小程序",
55
"author": "Wei Zhu <yesmeck@gmail.com>",
66
"homepage": "https://remaxjs.org",
@@ -31,7 +31,7 @@
3131
},
3232
"devDependencies": {
3333
"@babel/core": "^7.11.0",
34-
"@remax/build-store": "2.14.1",
34+
"@remax/build-store": "2.15.0",
3535
"@types/jest": "^26.0.8",
3636
"babel-plugin-tester": "^9.2.0"
3737
},

0 commit comments

Comments
 (0)