mirror of
https://github.com/marko-js/marko.git
synced 2026-02-01 16:07:13 +00:00
[ci] release
This commit is contained in:
parent
3b63f7d30a
commit
b4a15efb18
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@marko/translator-interop-class-tags": patch
|
||||
"@marko/runtime-tags": patch
|
||||
---
|
||||
|
||||
Fix issue where code within a control flow could execute after the control flow was removed.
|
||||
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@marko/runtime-tags": patch
|
||||
"marko": patch
|
||||
"@marko/translator-interop-class-tags": patch
|
||||
---
|
||||
|
||||
Edit TypeScript names for event handlers
|
||||
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@marko/runtime-tags": patch
|
||||
---
|
||||
|
||||
Fix issue concatinating effects in html writer.
|
||||
@ -1,8 +0,0 @@
|
||||
---
|
||||
"@marko/translator-interop-class-tags": patch
|
||||
"marko": patch
|
||||
"@marko/runtime-tags": patch
|
||||
"@marko/compiler": patch
|
||||
---
|
||||
|
||||
Improve tags / class api interop layer for destroyed tags.
|
||||
18
package-lock.json
generated
18
package-lock.json
generated
@ -10271,7 +10271,7 @@
|
||||
},
|
||||
"packages/compiler": {
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.39.10",
|
||||
"version": "5.39.11",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.26.2",
|
||||
@ -10299,7 +10299,7 @@
|
||||
"source-map-support": "^0.5.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"marko": "^5.37.10"
|
||||
"marko": "^5.37.12"
|
||||
},
|
||||
"engines": {
|
||||
"node": "18 || 20 || >=22"
|
||||
@ -10307,11 +10307,11 @@
|
||||
},
|
||||
"packages/runtime-class": {
|
||||
"name": "marko",
|
||||
"version": "5.37.11",
|
||||
"version": "5.37.12",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.26.0",
|
||||
"@marko/compiler": "^5.39.9",
|
||||
"@marko/compiler": "^5.39.11",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
@ -10355,10 +10355,10 @@
|
||||
},
|
||||
"packages/runtime-tags": {
|
||||
"name": "@marko/runtime-tags",
|
||||
"version": "0.3.22",
|
||||
"version": "0.3.23",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.39.9",
|
||||
"@marko/compiler": "^5.39.11",
|
||||
"csstype": "^3.1.3",
|
||||
"magic-string": "^0.30.17"
|
||||
},
|
||||
@ -10368,12 +10368,12 @@
|
||||
},
|
||||
"packages/translator-interop": {
|
||||
"name": "@marko/translator-interop-class-tags",
|
||||
"version": "0.2.8",
|
||||
"version": "0.2.9",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.26.2",
|
||||
"@marko/runtime-tags": "^0.3.18",
|
||||
"marko": "^5.37.10"
|
||||
"@marko/runtime-tags": "^0.3.23",
|
||||
"marko": "^5.37.12"
|
||||
},
|
||||
"engines": {
|
||||
"node": "18 || 20 || >=22"
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.39.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2470](https://github.com/marko-js/marko/pull/2470) [`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Improve tags / class api interop layer for destroyed tags.
|
||||
|
||||
## 5.39.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.39.10",
|
||||
"version": "5.39.11",
|
||||
"description": "Marko template to JS compiler.",
|
||||
"keywords": [
|
||||
"babel",
|
||||
@ -87,7 +87,7 @@
|
||||
"source-map-support": "^0.5.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"marko": "^5.37.10"
|
||||
"marko": "^5.37.12"
|
||||
},
|
||||
"engines": {
|
||||
"node": "18 || 20 || >=22"
|
||||
|
||||
@ -1,5 +1,16 @@
|
||||
# Change Log
|
||||
|
||||
## 5.37.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2469](https://github.com/marko-js/marko/pull/2469) [`f99d363`](https://github.com/marko-js/marko/commit/f99d363cd0597be495d486f48395192842da7262) Thanks [@LuLaValva](https://github.com/LuLaValva)! - Edit TypeScript names for event handlers
|
||||
|
||||
- [#2470](https://github.com/marko-js/marko/pull/2470) [`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Improve tags / class api interop layer for destroyed tags.
|
||||
|
||||
- Updated dependencies [[`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f)]:
|
||||
- @marko/compiler@5.39.11
|
||||
|
||||
## 5.37.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "marko",
|
||||
"version": "5.37.11",
|
||||
"version": "5.37.12",
|
||||
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
||||
"keywords": [
|
||||
"front-end",
|
||||
@ -70,7 +70,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.26.0",
|
||||
"@marko/compiler": "^5.39.9",
|
||||
"@marko/compiler": "^5.39.11",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
|
||||
@ -1,5 +1,20 @@
|
||||
# @marko/runtime-tags
|
||||
|
||||
## 0.3.23
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2470](https://github.com/marko-js/marko/pull/2470) [`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where code within a control flow could execute after the control flow was removed.
|
||||
|
||||
- [#2469](https://github.com/marko-js/marko/pull/2469) [`f99d363`](https://github.com/marko-js/marko/commit/f99d363cd0597be495d486f48395192842da7262) Thanks [@LuLaValva](https://github.com/LuLaValva)! - Edit TypeScript names for event handlers
|
||||
|
||||
- [#2468](https://github.com/marko-js/marko/pull/2468) [`2762924`](https://github.com/marko-js/marko/commit/276292455b16bbbd2869f465b7af5f891f88fa6d) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue concatinating effects in html writer.
|
||||
|
||||
- [#2470](https://github.com/marko-js/marko/pull/2470) [`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Improve tags / class api interop layer for destroyed tags.
|
||||
|
||||
- Updated dependencies [[`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f)]:
|
||||
- @marko/compiler@5.39.11
|
||||
|
||||
## 0.3.22
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/runtime-tags",
|
||||
"version": "0.3.22",
|
||||
"version": "0.3.23",
|
||||
"description": "Optimized runtime for Marko templates.",
|
||||
"keywords": [
|
||||
"api",
|
||||
@ -39,7 +39,7 @@
|
||||
"build": "node -r ~ts ./scripts/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.39.9",
|
||||
"@marko/compiler": "^5.39.11",
|
||||
"csstype": "^3.1.3",
|
||||
"magic-string": "^0.30.17"
|
||||
},
|
||||
|
||||
@ -1,5 +1,19 @@
|
||||
# @marko/translator-interop-class-tags
|
||||
|
||||
## 0.2.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2470](https://github.com/marko-js/marko/pull/2470) [`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where code within a control flow could execute after the control flow was removed.
|
||||
|
||||
- [#2469](https://github.com/marko-js/marko/pull/2469) [`f99d363`](https://github.com/marko-js/marko/commit/f99d363cd0597be495d486f48395192842da7262) Thanks [@LuLaValva](https://github.com/LuLaValva)! - Edit TypeScript names for event handlers
|
||||
|
||||
- [#2470](https://github.com/marko-js/marko/pull/2470) [`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Improve tags / class api interop layer for destroyed tags.
|
||||
|
||||
- Updated dependencies [[`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f), [`f99d363`](https://github.com/marko-js/marko/commit/f99d363cd0597be495d486f48395192842da7262), [`2762924`](https://github.com/marko-js/marko/commit/276292455b16bbbd2869f465b7af5f891f88fa6d), [`218c436`](https://github.com/marko-js/marko/commit/218c43674e478062cdbc0fcbaef0dc13cd79107f)]:
|
||||
- @marko/runtime-tags@0.3.23
|
||||
- marko@5.37.12
|
||||
|
||||
## 0.2.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/translator-interop-class-tags",
|
||||
"version": "0.2.8",
|
||||
"version": "0.2.9",
|
||||
"description": "Combines the Class API translator from Marko 5 and the Tags API translator from Marko 6",
|
||||
"keywords": [
|
||||
"babel",
|
||||
@ -30,8 +30,8 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.26.2",
|
||||
"@marko/runtime-tags": "^0.3.18",
|
||||
"marko": "^5.37.10"
|
||||
"@marko/runtime-tags": "^0.3.23",
|
||||
"marko": "^5.37.12"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.23.0"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user