[ci] release

This commit is contained in:
github-actions[bot] 2025-06-19 22:37:22 +00:00 committed by Dylan Piercey
parent 2d11230f01
commit e965bfee95
10 changed files with 52 additions and 26 deletions

View File

@ -1,8 +0,0 @@
---
"@marko/compiler": patch
"marko": patch
"@marko/runtime-tags": patch
"@marko/translator-interop-class-tags": patch
---
Avoid using "util" module to improve browser compat of compiler.

18
package-lock.json generated
View File

@ -10455,7 +10455,7 @@
},
"packages/compiler": {
"name": "@marko/compiler",
"version": "5.39.26",
"version": "5.39.27",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
@ -10483,7 +10483,7 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"marko": "^5.37.37"
"marko": "^5.37.39"
},
"engines": {
"node": "18 || 20 || >=22"
@ -10491,11 +10491,11 @@
},
"packages/runtime-class": {
"name": "marko",
"version": "5.37.38",
"version": "5.37.39",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.27.0",
"@marko/compiler": "^5.39.26",
"@marko/compiler": "^5.39.27",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",
@ -10543,10 +10543,10 @@
},
"packages/runtime-tags": {
"name": "@marko/runtime-tags",
"version": "6.0.27",
"version": "6.0.28",
"license": "MIT",
"dependencies": {
"@marko/compiler": "^5.39.26",
"@marko/compiler": "^5.39.27",
"csstype": "^3.1.3",
"magic-string": "^0.30.17"
},
@ -10556,12 +10556,12 @@
},
"packages/translator-interop": {
"name": "@marko/translator-interop-class-tags",
"version": "0.2.30",
"version": "0.2.31",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.26.2",
"@marko/runtime-tags": "^6.0.27",
"marko": "^5.37.38"
"@marko/runtime-tags": "^6.0.28",
"marko": "^5.37.39"
},
"engines": {
"node": "18 || 20 || >=22"

View File

@ -1,5 +1,11 @@
# Change Log
## 5.39.27
### Patch Changes
- [#2713](https://github.com/marko-js/marko/pull/2713) [`2d11230`](https://github.com/marko-js/marko/commit/2d11230f012397681f63071ea9b33b246b45f9ad) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid using "util" module to improve browser compat of compiler.
## 5.39.26
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/compiler",
"version": "5.39.26",
"version": "5.39.27",
"description": "Marko template to JS compiler.",
"keywords": [
"babel",
@ -87,7 +87,7 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"marko": "^5.37.37"
"marko": "^5.37.39"
},
"engines": {
"node": "18 || 20 || >=22"

View File

@ -1,5 +1,14 @@
# Change Log
## 5.37.39
### Patch Changes
- [#2713](https://github.com/marko-js/marko/pull/2713) [`2d11230`](https://github.com/marko-js/marko/commit/2d11230f012397681f63071ea9b33b246b45f9ad) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid using "util" module to improve browser compat of compiler.
- Updated dependencies [[`2d11230`](https://github.com/marko-js/marko/commit/2d11230f012397681f63071ea9b33b246b45f9ad)]:
- @marko/compiler@5.39.27
## 5.37.38
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "marko",
"version": "5.37.38",
"version": "5.37.39",
"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.27.0",
"@marko/compiler": "^5.39.26",
"@marko/compiler": "^5.39.27",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",

View File

@ -1,5 +1,14 @@
# @marko/runtime-tags
## 6.0.28
### Patch Changes
- [#2713](https://github.com/marko-js/marko/pull/2713) [`2d11230`](https://github.com/marko-js/marko/commit/2d11230f012397681f63071ea9b33b246b45f9ad) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid using "util" module to improve browser compat of compiler.
- Updated dependencies [[`2d11230`](https://github.com/marko-js/marko/commit/2d11230f012397681f63071ea9b33b246b45f9ad)]:
- @marko/compiler@5.39.27
## 6.0.27
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/runtime-tags",
"version": "6.0.27",
"version": "6.0.28",
"description": "Optimized runtime for Marko templates.",
"keywords": [
"api",
@ -39,7 +39,7 @@
"build": "node -r ~ts ./scripts/bundle.ts"
},
"dependencies": {
"@marko/compiler": "^5.39.26",
"@marko/compiler": "^5.39.27",
"csstype": "^3.1.3",
"magic-string": "^0.30.17"
},

View File

@ -1,5 +1,15 @@
# @marko/translator-interop-class-tags
## 0.2.31
### Patch Changes
- [#2713](https://github.com/marko-js/marko/pull/2713) [`2d11230`](https://github.com/marko-js/marko/commit/2d11230f012397681f63071ea9b33b246b45f9ad) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Avoid using "util" module to improve browser compat of compiler.
- Updated dependencies [[`2d11230`](https://github.com/marko-js/marko/commit/2d11230f012397681f63071ea9b33b246b45f9ad)]:
- marko@5.37.39
- @marko/runtime-tags@6.0.28
## 0.2.30
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-interop-class-tags",
"version": "0.2.30",
"version": "0.2.31",
"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": "^6.0.27",
"marko": "^5.37.38"
"@marko/runtime-tags": "^6.0.28",
"marko": "^5.37.39"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"