[ci] release

This commit is contained in:
github-actions[bot] 2025-12-11 18:09:39 +00:00 committed by Dylan Piercey
parent 792dd1d5d1
commit 35183b79bc
11 changed files with 56 additions and 44 deletions

View File

@ -1,7 +0,0 @@
---
"@marko/runtime-tags": patch
"@marko/compiler": patch
"marko": patch
---
Expose Marko target api on compiled meta data.

View File

@ -1,6 +0,0 @@
---
"marko": patch
"@marko/runtime-tags": patch
---
Add style block as tag api interop heuristic.

View File

@ -1,7 +0,0 @@
---
"marko": patch
"@marko/runtime-tags": patch
"@marko/compiler": patch
---
Add support for "use class" comment to opt into to class api when exclusive `tags` folders prefer tags api.

View File

@ -1,7 +0,0 @@
---
"marko": patch
"@marko/runtime-tags": patch
"@marko/compiler": patch
---
Add exclusive `tags` folder discovery as a "prefer tags api" heuristic in interop mode.

18
package-lock.json generated
View File

@ -3242,10 +3242,6 @@
"resolved": "packages/runtime-tags",
"link": true
},
"node_modules/@marko/translator-interop-class-tags": {
"resolved": "packages/translator-interop",
"link": true
},
"node_modules/@nicolo-ribaudo/chokidar-2": {
"version": "2.1.8-no-fsevents.3",
"resolved": "https://registry.npmjs.org/@nicolo-ribaudo/chokidar-2/-/chokidar-2-2.1.8-no-fsevents.3.tgz",
@ -10532,7 +10528,7 @@
},
"packages/compiler": {
"name": "@marko/compiler",
"version": "5.39.44",
"version": "5.39.45",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.27.1",
@ -10560,7 +10556,7 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"marko": "^5.38.0"
"marko": "^5.38.1"
},
"engines": {
"node": "18 || 20 || >=22"
@ -10568,11 +10564,12 @@
},
"packages/runtime-class": {
"name": "marko",
"version": "5.38.0",
"version": "5.38.1",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.28.2",
"@marko/compiler": "^5.39.44",
"@marko/compiler": "^5.39.45",
"@marko/runtime-tags": "^6.0.122",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",
@ -10616,10 +10613,10 @@
},
"packages/runtime-tags": {
"name": "@marko/runtime-tags",
"version": "6.0.121",
"version": "6.0.122",
"license": "MIT",
"dependencies": {
"@marko/compiler": "^5.39.44",
"@marko/compiler": "^5.39.45",
"csstype": "^3.1.3",
"magic-string": "^0.30.17"
},
@ -10630,6 +10627,7 @@
"packages/translator-interop": {
"name": "@marko/translator-interop-class-tags",
"version": "0.2.58",
"extraneous": true,
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.27.1",

View File

@ -1,5 +1,15 @@
# Change Log
## 5.39.45
### Patch Changes
- [#3001](https://github.com/marko-js/marko/pull/3001) [`792dd1d`](https://github.com/marko-js/marko/commit/792dd1d5d193554889f7ba6e734c1730b947cf2d) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Expose Marko target api on compiled meta data.
- [#2999](https://github.com/marko-js/marko/pull/2999) [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add support for "use class" comment to opt into to class api when exclusive `tags` folders prefer tags api.
- [#2999](https://github.com/marko-js/marko/pull/2999) [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add exclusive `tags` folder discovery as a "prefer tags api" heuristic in interop mode.
## 5.39.44
### Patch Changes

View File

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

View File

@ -1,5 +1,21 @@
# Change Log
## 5.38.1
### Patch Changes
- [#3001](https://github.com/marko-js/marko/pull/3001) [`792dd1d`](https://github.com/marko-js/marko/commit/792dd1d5d193554889f7ba6e734c1730b947cf2d) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Expose Marko target api on compiled meta data.
- [#2999](https://github.com/marko-js/marko/pull/2999) [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add style block as tag api interop heuristic.
- [#2999](https://github.com/marko-js/marko/pull/2999) [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add support for "use class" comment to opt into to class api when exclusive `tags` folders prefer tags api.
- [#2999](https://github.com/marko-js/marko/pull/2999) [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add exclusive `tags` folder discovery as a "prefer tags api" heuristic in interop mode.
- Updated dependencies [[`792dd1d`](https://github.com/marko-js/marko/commit/792dd1d5d193554889f7ba6e734c1730b947cf2d), [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db), [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db), [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db)]:
- @marko/runtime-tags@6.0.122
- @marko/compiler@5.39.45
## 5.38.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "marko",
"version": "5.38.0",
"version": "5.38.1",
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
"keywords": [
"front-end",
@ -70,8 +70,8 @@
},
"dependencies": {
"@babel/runtime": "^7.28.2",
"@marko/compiler": "^5.39.44",
"@marko/runtime-tags": "^6.0.121",
"@marko/compiler": "^5.39.45",
"@marko/runtime-tags": "^6.0.122",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",

View File

@ -1,5 +1,20 @@
# @marko/runtime-tags
## 6.0.122
### Patch Changes
- [#3001](https://github.com/marko-js/marko/pull/3001) [`792dd1d`](https://github.com/marko-js/marko/commit/792dd1d5d193554889f7ba6e734c1730b947cf2d) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Expose Marko target api on compiled meta data.
- [#2999](https://github.com/marko-js/marko/pull/2999) [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add style block as tag api interop heuristic.
- [#2999](https://github.com/marko-js/marko/pull/2999) [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add support for "use class" comment to opt into to class api when exclusive `tags` folders prefer tags api.
- [#2999](https://github.com/marko-js/marko/pull/2999) [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add exclusive `tags` folder discovery as a "prefer tags api" heuristic in interop mode.
- Updated dependencies [[`792dd1d`](https://github.com/marko-js/marko/commit/792dd1d5d193554889f7ba6e734c1730b947cf2d), [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db), [`d2f437b`](https://github.com/marko-js/marko/commit/d2f437bf7118c3160a4f4c9cf977b8396d9fc8db)]:
- @marko/compiler@5.39.45
## 6.0.121
### Patch Changes

View File

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