Skip to content

Commit

Permalink
chore(release): publish packages
Browse files Browse the repository at this point in the history
  • Loading branch information
BboyZaki committed Jul 14, 2023
1 parent 3e1cfcb commit aadb9fb
Show file tree
Hide file tree
Showing 44 changed files with 268 additions and 71 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,17 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [1.0.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

### Bug Fixes

- **core:** 修复 invokeHook 参数 hookName 的类型报错 ([#78](https://github.com/eleme/morjs/issues/78)) ([3e1cfcb](https://github.com/eleme/morjs/commit/3e1cfcb8d886f509b567383d84c5b087fb512809))

### Features

- **plugin-compiler:** 新增多端组件构建模式支持 ([#75](https://github.com/eleme/morjs/issues/75)) ([3307838](https://github.com/eleme/morjs/commit/3307838d278607d300c390877abe48e40f117acd))
- **runtime-base:** 新增 hooks 的 pause、resume 方法,用于暂停/恢复部分 hooks 生命周期的执行 ([#77](https://github.com/eleme/morjs/issues/77)) ([aa712eb](https://github.com/eleme/morjs/commit/aa712ebf2603ecd5b1340f77c0d79e2e709476ad))

## [1.0.67](https://github.com/eleme/morjs/compare/v1.0.66...v1.0.67) (2023-07-13)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
"message": "chore(release): publish packages"
}
},
"version": "1.0.67"
"version": "1.0.68"
}
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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.53](https://github.com/eleme/morjs/compare/v1.0.52...v1.0.53) (2023-06-07)

**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.53",
"version": "1.0.68",
"description": "mor runtime api",
"keywords": [
"mor"
Expand Down Expand Up @@ -37,7 +37,7 @@
},
"sideEffects": false,
"dependencies": {
"@morjs/runtime-base": "1.0.53",
"@morjs/runtime-base": "1.0.68",
"tslib": "^2.3.1"
}
}
8 changes: 8 additions & 0 deletions packages/cli/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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.67](https://github.com/eleme/morjs/compare/v1.0.66...v1.0.67) (2023-07-13)

**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.67",
"version": "1.0.68",
"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.57",
"@morjs/plugin-compiler": "1.0.67",
"@morjs/plugin-composer": "1.0.60",
"@morjs/plugin-generator": "1.0.57",
"@morjs/plugin-mocker": "1.0.57",
"@morjs/utils": "1.0.57",
"@morjs/plugin-analyzer": "1.0.68",
"@morjs/plugin-compiler": "1.0.68",
"@morjs/plugin-composer": "1.0.68",
"@morjs/plugin-generator": "1.0.68",
"@morjs/plugin-mocker": "1.0.68",
"@morjs/utils": "1.0.68",
"v8-compile-cache": "^2.3.0",
"youch": "^3.2.2",
"youch-terminal": "^2.1.5"
Expand Down
16 changes: 16 additions & 0 deletions packages/core/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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)


### Bug Fixes

* **core:** 修复 invokeHook 参数 hookName 的类型报错 ([#78](https://github.com/eleme/morjs/issues/78)) ([3e1cfcb](https://github.com/eleme/morjs/commit/3e1cfcb8d886f509b567383d84c5b087fb512809))


### Features

* **runtime-base:** 新增 hooks 的 pause、resume 方法,用于暂停/恢复部分 hooks 生命周期的执行 ([#77](https://github.com/eleme/morjs/issues/77)) ([aa712eb](https://github.com/eleme/morjs/commit/aa712ebf2603ecd5b1340f77c0d79e2e709476ad))





## [1.0.53](https://github.com/eleme/morjs/compare/v1.0.52...v1.0.53) (2023-06-07)

**Note:** Version bump only for package @morjs/core
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.53",
"version": "1.0.68",
"description": "mor runtime core",
"keywords": [
"mor",
Expand Down Expand Up @@ -38,7 +38,7 @@
},
"sideEffects": false,
"dependencies": {
"@morjs/api": "1.0.53",
"@morjs/api": "1.0.68",
"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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.67](https://github.com/eleme/morjs/compare/v1.0.66...v1.0.67) (2023-07-13)

**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.67",
"version": "1.0.68",
"license": "MIT",
"authors": [
"Felix Liu <[email protected]> (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.67"
"@morjs/cli": "1.0.68"
}
}
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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.57](https://github.com/eleme/morjs/compare/v1.0.56...v1.0.57) (2023-06-21)

**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.57",
"version": "1.0.68",
"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.57"
"@morjs/utils": "1.0.68"
}
}
8 changes: 8 additions & 0 deletions packages/plugin-compiler-alipay/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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.59](https://github.com/eleme/morjs/compare/v1.0.58...v1.0.59) (2023-06-25)


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.59",
"version": "1.0.68",
"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.54",
"@morjs/utils": "1.0.57"
"@morjs/runtime-mini": "1.0.68",
"@morjs/utils": "1.0.68"
}
}
8 changes: 8 additions & 0 deletions packages/plugin-compiler-baidu/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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.57](https://github.com/eleme/morjs/compare/v1.0.56...v1.0.57) (2023-06-21)

**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.57",
"version": "1.0.68",
"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.57",
"@morjs/runtime-mini": "1.0.54",
"@morjs/utils": "1.0.57"
"@morjs/plugin-compiler-wechat": "1.0.68",
"@morjs/runtime-mini": "1.0.68",
"@morjs/utils": "1.0.68"
}
}
8 changes: 8 additions & 0 deletions packages/plugin-compiler-bytedance/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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.57](https://github.com/eleme/morjs/compare/v1.0.56...v1.0.57) (2023-06-21)

**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.57",
"version": "1.0.68",
"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.57",
"@morjs/runtime-mini": "1.0.54",
"@morjs/utils": "1.0.57"
"@morjs/plugin-compiler-wechat": "1.0.68",
"@morjs/runtime-mini": "1.0.68",
"@morjs/utils": "1.0.68"
}
}
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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.59](https://github.com/eleme/morjs/compare/v1.0.58...v1.0.59) (2023-06-25)

**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.59",
"version": "1.0.68",
"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.59",
"@morjs/utils": "1.0.57"
"@morjs/plugin-compiler-alipay": "1.0.68",
"@morjs/utils": "1.0.68"
}
}
8 changes: 8 additions & 0 deletions packages/plugin-compiler-kuaishou/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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.57](https://github.com/eleme/morjs/compare/v1.0.56...v1.0.57) (2023-06-21)

**Note:** Version bump only for package @morjs/plugin-compiler-kuaishou
Expand Down
8 changes: 4 additions & 4 deletions packages/plugin-compiler-kuaishou/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@morjs/plugin-compiler-kuaishou",
"version": "1.0.57",
"version": "1.0.68",
"description": "mor complier plugin for kuaishou 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.57",
"@morjs/runtime-mini": "1.0.54",
"@morjs/utils": "1.0.57"
"@morjs/plugin-compiler-wechat": "1.0.68",
"@morjs/runtime-mini": "1.0.68",
"@morjs/utils": "1.0.68"
}
}
8 changes: 8 additions & 0 deletions packages/plugin-compiler-qq/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.68](https://github.com/eleme/morjs/compare/v1.0.67...v1.0.68) (2023-07-14)

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





## [1.0.57](https://github.com/eleme/morjs/compare/v1.0.56...v1.0.57) (2023-06-21)

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

0 comments on commit aadb9fb

Please sign in to comment.