Skip to content

Commit

Permalink
chore(release): publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
hwaphon committed Mar 13, 2024
1 parent bdbd3a1 commit 758f541
Show file tree
Hide file tree
Showing 48 changed files with 783 additions and 75 deletions.
213 changes: 213 additions & 0 deletions CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,5 +26,5 @@
"message": "chore(release): publish packages"
}
},
"version": "1.0.101"
"version": "1.0.102-alpha.0"
}
8 changes: 8 additions & 0 deletions packages/api/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)

**Note:** Version bump only for package @morjs/api





## [1.0.69](https://github.com/eleme/morjs/compare/v1.0.68...v1.0.69) (2023-07-17)

**Note:** Version bump only for package @morjs/api
Expand Down
4 changes: 2 additions & 2 deletions packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morjs/api",
"version": "1.0.69",
"version": "1.0.102-alpha.0",
"description": "mor runtime api",
"keywords": [
"mor"
Expand Down Expand Up @@ -37,7 +37,7 @@
},
"sideEffects": false,
"dependencies": {
"@morjs/runtime-base": "1.0.69",
"@morjs/runtime-base": "1.0.102-alpha.0",
"tslib": "^2.3.1"
}
}
16 changes: 16 additions & 0 deletions packages/cli/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,22 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)


### Bug Fixes

* **cli:** 修复配置变更自动重启可能会触发多次的问题 ([444d453](https://github.com/eleme/morjs/commit/444d45384cef3bcc9f85eb3251148d0cb9600de5))


### Features

* **cli:** 对外暴露 generateComposeModuleHash 方法方便定制集成能力 ([993d66f](https://github.com/eleme/morjs/commit/993d66fea7421a5503b810b1032fec0eb1ad7ddd))





## [1.0.101](https://github.com/eleme/morjs/compare/v1.0.100...v1.0.101) (2024-02-23)

**Note:** Version bump only for package @morjs/cli
Expand Down
14 changes: 7 additions & 7 deletions packages/cli/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morjs/cli",
"version": "1.0.101",
"version": "1.0.102-alpha.0",
"description": "mor cli",
"keywords": [
"mor",
Expand Down Expand Up @@ -33,12 +33,12 @@
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
"@morjs/plugin-analyzer": "1.0.71",
"@morjs/plugin-compiler": "1.0.101",
"@morjs/plugin-composer": "1.0.72",
"@morjs/plugin-generator": "1.0.71",
"@morjs/plugin-mocker": "1.0.71",
"@morjs/utils": "1.0.71",
"@morjs/plugin-analyzer": "1.0.102-alpha.0",
"@morjs/plugin-compiler": "1.0.102-alpha.0",
"@morjs/plugin-composer": "1.0.102-alpha.0",
"@morjs/plugin-generator": "1.0.102-alpha.0",
"@morjs/plugin-mocker": "1.0.102-alpha.0",
"@morjs/utils": "1.0.102-alpha.0",
"v8-compile-cache": "^2.3.0",
"youch": "^3.2.2",
"youch-terminal": "^2.1.5"
Expand Down
21 changes: 21 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,27 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)


### Bug Fixes

* **core:** 完善 invokeHook 方法兜底检查,找不到 hook 时打印错误日志,不直接抛错 ([f9f361b](https://github.com/eleme/morjs/commit/f9f361b1f88dee845abb4571d22bf4714e287626))
* **core:** 修复 invokeHook 参数 hookName 的类型报错 ([#78](https://github.com/eleme/morjs/issues/78)) ([3e1cfcb](https://github.com/eleme/morjs/commit/3e1cfcb8d886f509b567383d84c5b087fb512809))
* **core:** 修复支付宝 DSL 下 lifetimes 无值可能导致报错的问题 ([#51](https://github.com/eleme/morjs/issues/51)) ([644f9b2](https://github.com/eleme/morjs/commit/644f9b208ca50af5158ac39af9216465d0dda638))
* **core:** fix wechat npm build support ([32af3e2](https://github.com/eleme/morjs/commit/32af3e2f772909e46e8be84bc4f60820dd00d604))
* **core:** mixin 数组被转换成了对象 ([#117](https://github.com/eleme/morjs/issues/117)) ([c895e30](https://github.com/eleme/morjs/commit/c895e30b5b8bdddd2eb8ab6b537888b4291738b2))


### Features

* **runtime-base:** 新增 hooks 的 pause、resume 方法,用于暂停/恢复部分 hooks 生命周期的执行 ([#77](https://github.com/eleme/morjs/issues/77)) ([aa712eb](https://github.com/eleme/morjs/commit/aa712ebf2603ecd5b1340f77c0d79e2e709476ad))
* **runtime-mini:** 对齐最新 lifetimes 的官方功能,优先使用官方提供的 lifetimes 方法,兜底使用 mor 的自实现 ([#38](https://github.com/eleme/morjs/issues/38)) ([0044d4a](https://github.com/eleme/morjs/commit/0044d4a8cc86fc619c505f664d098c033fb7d8a7))





## [1.0.86](https://github.com/eleme/morjs/compare/v1.0.85...v1.0.86) (2023-11-07)


Expand Down
4 changes: 2 additions & 2 deletions packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morjs/core",
"version": "1.0.86",
"version": "1.0.102-alpha.0",
"description": "mor runtime core",
"keywords": [
"mor",
Expand Down Expand Up @@ -38,7 +38,7 @@
},
"sideEffects": false,
"dependencies": {
"@morjs/api": "1.0.69",
"@morjs/api": "1.0.102-alpha.0",
"mini-types": "^0.1.7",
"miniprogram-api-typings": "^3.4.4",
"tslib": "^2.3.1"
Expand Down
8 changes: 8 additions & 0 deletions packages/create-mor/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)

**Note:** Version bump only for package create-mor





## [1.0.101](https://github.com/eleme/morjs/compare/v1.0.100...v1.0.101) (2024-02-23)

**Note:** Version bump only for package create-mor
Expand Down
4 changes: 2 additions & 2 deletions packages/create-mor/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "create-mor",
"version": "1.0.101",
"version": "1.0.102-alpha.0",
"license": "MIT",
"authors": [
"Felix Liu <lyfeyaj@gmail.com> (https://github.com/lyfeyaj)"
Expand All @@ -26,6 +26,6 @@
},
"homepage": "https://github.com/eleme/morjs/tree/main/packages/create-mor#readme",
"dependencies": {
"@morjs/cli": "1.0.101"
"@morjs/cli": "1.0.102-alpha.0"
}
}
8 changes: 8 additions & 0 deletions packages/plugin-analyzer/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)

**Note:** Version bump only for package @morjs/plugin-analyzer





## [1.0.71](https://github.com/eleme/morjs/compare/v1.0.70...v1.0.71) (2023-07-26)

**Note:** Version bump only for package @morjs/plugin-analyzer
Expand Down
4 changes: 2 additions & 2 deletions packages/plugin-analyzer/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morjs/plugin-analyzer",
"version": "1.0.71",
"version": "1.0.102-alpha.0",
"description": "mor analyzer plugin",
"keywords": [
"mor",
Expand Down Expand Up @@ -32,6 +32,6 @@
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
"@morjs/utils": "1.0.71"
"@morjs/utils": "1.0.102-alpha.0"
}
}
32 changes: 32 additions & 0 deletions packages/plugin-compiler-alipay/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,38 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)


### Bug Fixes

* **plugin-compiler-alipay:** 修复 sjs 辅助文件某些情况下可能被注入多次的问题 ([7781f72](https://github.com/eleme/morjs/commit/7781f725fa9f842785d1d738cd83ae68025fd75b))
* **plugin-compiler-alipay:** 修复 sjs 文件模块变量 this 名称替换可能会漏掉的问题 ([ed6046f](https://github.com/eleme/morjs/commit/ed6046fd73fa9eaceaf1e0bf00ca8ccd1934c7b6))
* **plugin-compiler-alipay:** 修复微信转支付宝对分包配置的兼容 ([17eb4da](https://github.com/eleme/morjs/commit/17eb4da82182616b2e42c825c3813fdb86889c56))
* **plugin-compiler-alipay:** 修复微信转支付宝分包配置可能会引发报错的问题 ([63522f9](https://github.com/eleme/morjs/commit/63522f9c0f93419313162023823d4e1a2d2bfcc0))
* **plugin-compiler-alipay:** 优化 sjs 辅助函数注入检查逻辑 ([cb9eb35](https://github.com/eleme/morjs/commit/cb9eb356ff603566bb1bb17f531b53d60bea91f8))


### Features

* **plugin-compiler-alipay:** 补充部分支付宝原生组件事件配置 ([b1b7f76](https://github.com/eleme/morjs/commit/b1b7f7625f018add0ace22cb338d6ac242ee623c))
* **plugin-compiler-alipay:** 添加对 bind:abc-def 事件写法的支持 ([c533d92](https://github.com/eleme/morjs/commit/c533d92e669cb0dcd84598ade3a64e4574a85f77))
* **plugin-compiler-alipay:** 完善微信转支付宝的转端兼容性:处理支付宝不支持 sjs 模块名称为 this 及 组件名称不支持大写的问题 ([b6aa409](https://github.com/eleme/morjs/commit/b6aa4097c82c16e49f3b018570c59efeacd43df0))
* **plugin-compiler-alipay:** 完善支付宝 DSL 的模版字符串和样式对象支持 ([c748f83](https://github.com/eleme/morjs/commit/c748f8386336bd0206441b3b44bbc5ee9fee7c4f))
* **plugin-compiler-alipay:** 完善支付宝转微信 sjs 中 export default function xxx(){} 的转换支持 ([f907bb2](https://github.com/eleme/morjs/commit/f907bb2333b46a4a03e0b1d926f8bd4491aed198))
* **plugin-compiler-alipay:** 完善支付宝转微信不兼容选择器提示信息 ([eacdf5e](https://github.com/eleme/morjs/commit/eacdf5e60898e2ad30533c1407d81c2eca0202b0))
* **plugin-compiler-alipay:** 完善支付宝转微信时模版中对部分方法调用的支持 ([4780b28](https://github.com/eleme/morjs/commit/4780b28140551e0ae5b1d3cfe4e4b139928bb59c))
* **plugin-compiler-alipay:** 微信转支付宝时将 map 组件的 polygons 转换成 polygon ([#124](https://github.com/eleme/morjs/issues/124)) ([367a66e](https://github.com/eleme/morjs/commit/367a66e771ea0e9a56cfaa0c8d07dba80dd89607))
* **plugin-compiler-alipay:** 优化 sjs 帮助文件的名称生成逻辑 ([30395bb](https://github.com/eleme/morjs/commit/30395bb32d919abf09eeffb0a0fbfd89f317e48d))
* **plugin-compiler-web:** 移除 slot 组件对 class, style 属性的解析以及完善节点返回值校验 ([#79](https://github.com/eleme/morjs/issues/79)) ([fcca600](https://github.com/eleme/morjs/commit/fcca60068edc7e50787e5f36eac328b6e48ee4bd))
* **plugin-compiler:** 微信转支付宝时 camera ready 事件兼容 ([#125](https://github.com/eleme/morjs/issues/125)) ([a852093](https://github.com/eleme/morjs/commit/a852093777ccf09f8847dc5866eb33a6e0671276))
* **plugin-compiler:** 新增组件级别多端产物互通能力支持 ([#97](https://github.com/eleme/morjs/issues/97)) ([cc97565](https://github.com/eleme/morjs/commit/cc97565561ecf4529b47466c55e63892e60d35f1))
* **runtime-mini:** 对齐最新 lifetimes 的官方功能,优先使用官方提供的 lifetimes 方法,兜底使用 mor 的自实现 ([#38](https://github.com/eleme/morjs/issues/38)) ([0044d4a](https://github.com/eleme/morjs/commit/0044d4a8cc86fc619c505f664d098c033fb7d8a7))





## [1.0.95](https://github.com/eleme/morjs/compare/v1.0.95-beta.1...v1.0.95) (2024-01-16)

**Note:** Version bump only for package @morjs/plugin-compiler-alipay
Expand Down
6 changes: 3 additions & 3 deletions packages/plugin-compiler-alipay/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morjs/plugin-compiler-alipay",
"version": "1.0.95",
"version": "1.0.102-alpha.0",
"description": "mor complier plugin for alipay mini program",
"keywords": [
"mor",
Expand Down Expand Up @@ -35,7 +35,7 @@
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
"@morjs/runtime-mini": "1.0.95",
"@morjs/utils": "1.0.71"
"@morjs/runtime-mini": "1.0.102-alpha.0",
"@morjs/utils": "1.0.102-alpha.0"
}
}
12 changes: 12 additions & 0 deletions packages/plugin-compiler-baidu/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)


### Features

* **plugin-compiler-baidu:** 完善微信转百度双向绑定适配以及修复 s-for 指令适配逻辑 ([3d15094](https://github.com/eleme/morjs/commit/3d15094eb983f8148690dda08c80c480474335b5))
* **runtime-mini:** 对齐最新 lifetimes 的官方功能,优先使用官方提供的 lifetimes 方法,兜底使用 mor 的自实现 ([#38](https://github.com/eleme/morjs/issues/38)) ([0044d4a](https://github.com/eleme/morjs/commit/0044d4a8cc86fc619c505f664d098c033fb7d8a7))





## [1.0.95](https://github.com/eleme/morjs/compare/v1.0.95-beta.1...v1.0.95) (2024-01-16)

**Note:** Version bump only for package @morjs/plugin-compiler-baidu
Expand Down
8 changes: 4 additions & 4 deletions packages/plugin-compiler-baidu/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morjs/plugin-compiler-baidu",
"version": "1.0.95",
"version": "1.0.102-alpha.0",
"description": "mor complier plugin for baidu miniprogram",
"keywords": [
"mor",
Expand Down Expand Up @@ -34,8 +34,8 @@
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
"@morjs/plugin-compiler-wechat": "1.0.95",
"@morjs/runtime-mini": "1.0.95",
"@morjs/utils": "1.0.71"
"@morjs/plugin-compiler-wechat": "1.0.102-alpha.0",
"@morjs/runtime-mini": "1.0.102-alpha.0",
"@morjs/utils": "1.0.102-alpha.0"
}
}
13 changes: 13 additions & 0 deletions packages/plugin-compiler-bytedance/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,19 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)


### Features

* **plugin-compiler-bytedance:** 新增抖音分包异步化编译支持 ([#46](https://github.com/eleme/morjs/issues/46)) ([6e2ede2](https://github.com/eleme/morjs/commit/6e2ede2782bdbdc259d81deb603fccabc3f8f136))
* **plugin-compiler-bytedance:** 增加字节小程序双向绑定编译能力支持 ([6a03f1c](https://github.com/eleme/morjs/commit/6a03f1c786e1474418b47d292ed8c9054a8cd87b))
* **runtime-mini:** 对齐最新 lifetimes 的官方功能,优先使用官方提供的 lifetimes 方法,兜底使用 mor 的自实现 ([#38](https://github.com/eleme/morjs/issues/38)) ([0044d4a](https://github.com/eleme/morjs/commit/0044d4a8cc86fc619c505f664d098c033fb7d8a7))





## [1.0.95](https://github.com/eleme/morjs/compare/v1.0.95-beta.1...v1.0.95) (2024-01-16)

**Note:** Version bump only for package @morjs/plugin-compiler-bytedance
Expand Down
8 changes: 4 additions & 4 deletions packages/plugin-compiler-bytedance/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morjs/plugin-compiler-bytedance",
"version": "1.0.95",
"version": "1.0.102-alpha.0",
"description": "mor complier plugin for bytedance miniprogram",
"keywords": [
"mor",
Expand Down Expand Up @@ -34,8 +34,8 @@
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
"@morjs/plugin-compiler-wechat": "1.0.95",
"@morjs/runtime-mini": "1.0.95",
"@morjs/utils": "1.0.71"
"@morjs/plugin-compiler-wechat": "1.0.102-alpha.0",
"@morjs/runtime-mini": "1.0.102-alpha.0",
"@morjs/utils": "1.0.102-alpha.0"
}
}
8 changes: 8 additions & 0 deletions packages/plugin-compiler-dingding/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)

**Note:** Version bump only for package @morjs/plugin-compiler-dingding





## [1.0.95](https://github.com/eleme/morjs/compare/v1.0.95-beta.1...v1.0.95) (2024-01-16)

**Note:** Version bump only for package @morjs/plugin-compiler-dingding
Expand Down
6 changes: 3 additions & 3 deletions packages/plugin-compiler-dingding/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morjs/plugin-compiler-dingding",
"version": "1.0.95",
"version": "1.0.102-alpha.0",
"description": "mor complier plugin for dingding miniprogram",
"keywords": [
"mor",
Expand Down Expand Up @@ -34,7 +34,7 @@
"test": "echo \"Error: run tests from root\" && exit 1"
},
"dependencies": {
"@morjs/plugin-compiler-alipay": "1.0.95",
"@morjs/utils": "1.0.71"
"@morjs/plugin-compiler-alipay": "1.0.102-alpha.0",
"@morjs/utils": "1.0.102-alpha.0"
}
}
12 changes: 12 additions & 0 deletions packages/plugin-compiler-kuaishou/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,18 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## 1.0.102-alpha.0 (2024-03-13)


### Features

* **plugin-compiler-kuaishou:** 增加快手小程序双向绑定编译能力支持 ([53e72ee](https://github.com/eleme/morjs/commit/53e72eeb98f54f1300d12166e039da9495bb9284))
* **runtime-mini:** 对齐最新 lifetimes 的官方功能,优先使用官方提供的 lifetimes 方法,兜底使用 mor 的自实现 ([#38](https://github.com/eleme/morjs/issues/38)) ([0044d4a](https://github.com/eleme/morjs/commit/0044d4a8cc86fc619c505f664d098c033fb7d8a7))





## [1.0.95](https://github.com/eleme/morjs/compare/v1.0.95-beta.1...v1.0.95) (2024-01-16)

**Note:** Version bump only for package @morjs/plugin-compiler-kuaishou
Expand Down
Loading

0 comments on commit 758f541

Please sign in to comment.