mirror of
https://github.com/marko-js/marko.git
synced 2026-02-01 16:07:13 +00:00
[ci] release (#1863)
Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
This commit is contained in:
parent
30e0ea43d5
commit
e110024da2
@ -1,7 +0,0 @@
|
||||
---
|
||||
"marko": patch
|
||||
"@marko/compiler": patch
|
||||
"@marko/translator-default": patch
|
||||
---
|
||||
|
||||
Avoid mutating component instance in HMR mode. (Improves support in tags api preview)
|
||||
26
package-lock.json
generated
26
package-lock.json
generated
@ -9911,7 +9911,7 @@
|
||||
},
|
||||
"packages/compiler": {
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.22.9",
|
||||
"version": "5.22.10",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.16.0",
|
||||
@ -9939,7 +9939,7 @@
|
||||
"strip-json-comments": "^3.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/translator-default": "^5.21.7"
|
||||
"@marko/translator-default": "^5.21.8"
|
||||
}
|
||||
},
|
||||
"packages/compiler/node_modules/@babel/plugin-syntax-typescript": {
|
||||
@ -9968,11 +9968,11 @@
|
||||
}
|
||||
},
|
||||
"packages/marko": {
|
||||
"version": "5.21.10",
|
||||
"version": "5.21.11",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.22.9",
|
||||
"@marko/translator-default": "^5.21.7",
|
||||
"@marko/compiler": "^5.22.10",
|
||||
"@marko/translator-default": "^5.21.8",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
@ -9991,7 +9991,7 @@
|
||||
},
|
||||
"packages/translator-default": {
|
||||
"name": "@marko/translator-default",
|
||||
"version": "5.21.7",
|
||||
"version": "5.21.8",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.16.0",
|
||||
@ -10001,8 +10001,8 @@
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.22.9",
|
||||
"marko": "^5.21.10"
|
||||
"@marko/compiler": "^5.22.10",
|
||||
"marko": "^5.21.11"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.16.1",
|
||||
@ -11636,7 +11636,7 @@
|
||||
"@babel/traverse": "^7.16.0",
|
||||
"@babel/types": "^7.16.0",
|
||||
"@marko/babel-utils": "^5.21.3",
|
||||
"@marko/translator-default": "^5.21.7",
|
||||
"@marko/translator-default": "^5.21.8",
|
||||
"complain": "^1.6.0",
|
||||
"he": "^1.2.0",
|
||||
"htmljs-parser": "^5.1.5",
|
||||
@ -11671,10 +11671,10 @@
|
||||
"requires": {
|
||||
"@babel/runtime": "^7.16.0",
|
||||
"@marko/babel-utils": "^5.21.3",
|
||||
"@marko/compiler": "^5.22.9",
|
||||
"@marko/compiler": "^5.22.10",
|
||||
"escape-string-regexp": "^4.0.0",
|
||||
"magic-string": "^0.25.7",
|
||||
"marko": "^5.21.10",
|
||||
"marko": "^5.21.11",
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
@ -14856,8 +14856,8 @@
|
||||
"marko": {
|
||||
"version": "file:packages/marko",
|
||||
"requires": {
|
||||
"@marko/compiler": "^5.22.9",
|
||||
"@marko/translator-default": "^5.21.7",
|
||||
"@marko/compiler": "^5.22.10",
|
||||
"@marko/translator-default": "^5.21.8",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.22.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#1862](https://github.com/marko-js/marko/pull/1862) [`30e0ea43d`](https://github.com/marko-js/marko/commit/30e0ea43d56e0a3c59748eae32a0ab85921c1aeb) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid mutating component instance in HMR mode. (Improves support in tags api preview)
|
||||
|
||||
## 5.22.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@marko/compiler",
|
||||
"description": "Marko template to JS compiler.",
|
||||
"version": "5.22.9",
|
||||
"version": "5.22.10",
|
||||
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
||||
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
|
||||
"dependencies": {
|
||||
@ -30,7 +30,7 @@
|
||||
"strip-json-comments": "^3.1.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/translator-default": "^5.21.7"
|
||||
"@marko/translator-default": "^5.21.8"
|
||||
},
|
||||
"files": [
|
||||
"dist",
|
||||
|
||||
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 5.21.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#1862](https://github.com/marko-js/marko/pull/1862) [`30e0ea43d`](https://github.com/marko-js/marko/commit/30e0ea43d56e0a3c59748eae32a0ab85921c1aeb) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid mutating component instance in HMR mode. (Improves support in tags api preview)
|
||||
|
||||
- Updated dependencies [[`30e0ea43d`](https://github.com/marko-js/marko/commit/30e0ea43d56e0a3c59748eae32a0ab85921c1aeb)]:
|
||||
- @marko/compiler@5.22.10
|
||||
- @marko/translator-default@5.21.8
|
||||
|
||||
## 5.21.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,11 +1,11 @@
|
||||
{
|
||||
"name": "marko",
|
||||
"version": "5.21.10",
|
||||
"version": "5.21.11",
|
||||
"license": "MIT",
|
||||
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.22.9",
|
||||
"@marko/translator-default": "^5.21.7",
|
||||
"@marko/compiler": "^5.22.10",
|
||||
"@marko/translator-default": "^5.21.8",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.21.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#1862](https://github.com/marko-js/marko/pull/1862) [`30e0ea43d`](https://github.com/marko-js/marko/commit/30e0ea43d56e0a3c59748eae32a0ab85921c1aeb) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid mutating component instance in HMR mode. (Improves support in tags api preview)
|
||||
|
||||
## 5.21.7
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@marko/translator-default",
|
||||
"description": "Translates Marko templates to the default Marko runtime.",
|
||||
"version": "5.21.7",
|
||||
"version": "5.21.8",
|
||||
"author": "Dylan Piercey <dpiercey@ebay.com>",
|
||||
"bugs": "https://github.com/marko-js/marko/issues/new?template=Bug_report.md",
|
||||
"dependencies": {
|
||||
@ -12,8 +12,8 @@
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.22.9",
|
||||
"marko": "^5.21.10"
|
||||
"@marko/compiler": "^5.22.10",
|
||||
"marko": "^5.21.11"
|
||||
},
|
||||
"files": [
|
||||
"dist"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user