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
ff1776f4ac
commit
268d045071
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@marko/runtime-tags": patch
|
||||
---
|
||||
|
||||
Add better nullable check to node evaluation.
|
||||
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@marko/compiler": patch
|
||||
---
|
||||
|
||||
Add parenthesized expressions to the list of computable values.
|
||||
@ -1,6 +0,0 @@
|
||||
---
|
||||
"@marko/translator-interop-class-tags": patch
|
||||
"@marko/runtime-tags": patch
|
||||
---
|
||||
|
||||
Reduce serialized data and markers by providing input based serialize reasons from parent to child and guarding in the child.
|
||||
@ -1,5 +0,0 @@
|
||||
---
|
||||
"@marko/runtime-tags": patch
|
||||
---
|
||||
|
||||
Analyze return tag values from child templates to determine if they are stateful.
|
||||
10
package-lock.json
generated
10
package-lock.json
generated
@ -10455,7 +10455,7 @@
|
||||
},
|
||||
"packages/compiler": {
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.39.17",
|
||||
"version": "5.39.18",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.26.2",
|
||||
@ -10543,10 +10543,10 @@
|
||||
},
|
||||
"packages/runtime-tags": {
|
||||
"name": "@marko/runtime-tags",
|
||||
"version": "0.3.85",
|
||||
"version": "0.3.86",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.39.17",
|
||||
"@marko/compiler": "^5.39.18",
|
||||
"csstype": "^3.1.3",
|
||||
"magic-string": "^0.30.17"
|
||||
},
|
||||
@ -10556,11 +10556,11 @@
|
||||
},
|
||||
"packages/translator-interop": {
|
||||
"name": "@marko/translator-interop-class-tags",
|
||||
"version": "0.2.23",
|
||||
"version": "0.2.24",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.26.2",
|
||||
"@marko/runtime-tags": "^0.3.83",
|
||||
"@marko/runtime-tags": "^0.3.86",
|
||||
"marko": "^5.37.25"
|
||||
},
|
||||
"engines": {
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.39.18
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2636](https://github.com/marko-js/marko/pull/2636) [`dc748b4`](https://github.com/marko-js/marko/commit/dc748b4932c1db3f556d4fc898ab47911828b6b6) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add parenthesized expressions to the list of computable values.
|
||||
|
||||
## 5.39.17
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.39.17",
|
||||
"version": "5.39.18",
|
||||
"description": "Marko template to JS compiler.",
|
||||
"keywords": [
|
||||
"babel",
|
||||
|
||||
@ -1,5 +1,18 @@
|
||||
# @marko/runtime-tags
|
||||
|
||||
## 0.3.86
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2636](https://github.com/marko-js/marko/pull/2636) [`ff1776f`](https://github.com/marko-js/marko/commit/ff1776f4ac97771da6a254620a0f95d6b2c8d3e9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add better nullable check to node evaluation.
|
||||
|
||||
- [#2636](https://github.com/marko-js/marko/pull/2636) [`04a9267`](https://github.com/marko-js/marko/commit/04a9267a6fc865da0f083e19116198e4a675b2b9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Reduce serialized data and markers by providing input based serialize reasons from parent to child and guarding in the child.
|
||||
|
||||
- [#2636](https://github.com/marko-js/marko/pull/2636) [`04a9267`](https://github.com/marko-js/marko/commit/04a9267a6fc865da0f083e19116198e4a675b2b9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Analyze return tag values from child templates to determine if they are stateful.
|
||||
|
||||
- Updated dependencies [[`dc748b4`](https://github.com/marko-js/marko/commit/dc748b4932c1db3f556d4fc898ab47911828b6b6)]:
|
||||
- @marko/compiler@5.39.18
|
||||
|
||||
## 0.3.85
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/runtime-tags",
|
||||
"version": "0.3.85",
|
||||
"version": "0.3.86",
|
||||
"description": "Optimized runtime for Marko templates.",
|
||||
"keywords": [
|
||||
"api",
|
||||
@ -39,7 +39,7 @@
|
||||
"build": "node -r ~ts ./scripts/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.39.17",
|
||||
"@marko/compiler": "^5.39.18",
|
||||
"csstype": "^3.1.3",
|
||||
"magic-string": "^0.30.17"
|
||||
},
|
||||
|
||||
@ -1,5 +1,14 @@
|
||||
# @marko/translator-interop-class-tags
|
||||
|
||||
## 0.2.24
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2636](https://github.com/marko-js/marko/pull/2636) [`04a9267`](https://github.com/marko-js/marko/commit/04a9267a6fc865da0f083e19116198e4a675b2b9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Reduce serialized data and markers by providing input based serialize reasons from parent to child and guarding in the child.
|
||||
|
||||
- Updated dependencies [[`ff1776f`](https://github.com/marko-js/marko/commit/ff1776f4ac97771da6a254620a0f95d6b2c8d3e9), [`04a9267`](https://github.com/marko-js/marko/commit/04a9267a6fc865da0f083e19116198e4a675b2b9), [`04a9267`](https://github.com/marko-js/marko/commit/04a9267a6fc865da0f083e19116198e4a675b2b9)]:
|
||||
- @marko/runtime-tags@0.3.86
|
||||
|
||||
## 0.2.23
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/translator-interop-class-tags",
|
||||
"version": "0.2.23",
|
||||
"version": "0.2.24",
|
||||
"description": "Combines the Class API translator from Marko 5 and the Tags API translator from Marko 6",
|
||||
"keywords": [
|
||||
"babel",
|
||||
@ -30,7 +30,7 @@
|
||||
},
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.26.2",
|
||||
"@marko/runtime-tags": "^0.3.83",
|
||||
"@marko/runtime-tags": "^0.3.86",
|
||||
"marko": "^5.37.25"
|
||||
},
|
||||
"peerDependencies": {
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user