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
35115d8882
commit
23187c8e01
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@marko/translator-tags": patch
|
||||
"@marko/runtime-tags": patch
|
||||
"@marko/babel-utils": patch
|
||||
---
|
||||
|
||||
Refactor and improve logic around functon registration, binding renaming, and binding assignments.
|
||||
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@marko/translator-tags": patch
|
||||
"@marko/runtime-tags": patch
|
||||
"@marko/compiler": patch
|
||||
---
|
||||
|
||||
Add support for tags API script tag.
|
||||
16
package-lock.json
generated
16
package-lock.json
generated
@ -10304,7 +10304,7 @@
|
||||
},
|
||||
"packages/babel-utils": {
|
||||
"name": "@marko/babel-utils",
|
||||
"version": "6.6.1",
|
||||
"version": "6.6.2",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.26.0",
|
||||
@ -10312,12 +10312,12 @@
|
||||
"relative-import-path": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.38.1"
|
||||
"@marko/compiler": "^5.38.4"
|
||||
}
|
||||
},
|
||||
"packages/compiler": {
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.38.3",
|
||||
"version": "5.38.4",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.26.2",
|
||||
@ -10331,7 +10331,7 @@
|
||||
"@babel/traverse": "^7.25.9",
|
||||
"@babel/types": "^7.26.0",
|
||||
"@luxass/strip-json-comments": "^1.3.2",
|
||||
"@marko/babel-utils": "^6.6.1",
|
||||
"@marko/babel-utils": "^6.6.2",
|
||||
"complain": "^1.6.1",
|
||||
"he": "^1.2.0",
|
||||
"htmljs-parser": "^5.5.2",
|
||||
@ -10397,7 +10397,7 @@
|
||||
},
|
||||
"packages/runtime-tags": {
|
||||
"name": "@marko/runtime-tags",
|
||||
"version": "0.2.3",
|
||||
"version": "0.2.4",
|
||||
"license": "MIT"
|
||||
},
|
||||
"packages/translator-default": {
|
||||
@ -10435,11 +10435,11 @@
|
||||
},
|
||||
"packages/translator-tags": {
|
||||
"name": "@marko/translator-tags",
|
||||
"version": "0.4.6",
|
||||
"version": "0.4.7",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@marko/babel-utils": "^6.6.1",
|
||||
"@marko/runtime-tags": "^0.2.3"
|
||||
"@marko/babel-utils": "^6.6.2",
|
||||
"@marko/runtime-tags": "^0.2.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.23.0"
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 6.6.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2399](https://github.com/marko-js/marko/pull/2399) [`032afa1`](https://github.com/marko-js/marko/commit/032afa125b19969346639ac99ae9740521d0c3a2) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Refactor and improve logic around functon registration, binding renaming, and binding assignments.
|
||||
|
||||
## 6.6.1
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/babel-utils",
|
||||
"version": "6.6.1",
|
||||
"version": "6.6.2",
|
||||
"description": "Utilities for use with Marko babel plugins.",
|
||||
"keywords": [
|
||||
"htmljs",
|
||||
@ -33,7 +33,7 @@
|
||||
"relative-import-path": "^1.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.38.1"
|
||||
"@marko/compiler": "^5.38.4"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
@ -1,5 +1,14 @@
|
||||
# Change Log
|
||||
|
||||
## 5.38.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2401](https://github.com/marko-js/marko/pull/2401) [`46f8d7c`](https://github.com/marko-js/marko/commit/46f8d7cfba231d1ab724fec83f07d1192d5d4d7f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add support for tags API script tag.
|
||||
|
||||
- Updated dependencies [[`032afa1`](https://github.com/marko-js/marko/commit/032afa125b19969346639ac99ae9740521d0c3a2)]:
|
||||
- @marko/babel-utils@6.6.2
|
||||
|
||||
## 5.38.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.38.3",
|
||||
"version": "5.38.4",
|
||||
"description": "Marko template to JS compiler.",
|
||||
"keywords": [
|
||||
"babel",
|
||||
@ -66,7 +66,7 @@
|
||||
"@babel/traverse": "^7.25.9",
|
||||
"@babel/types": "^7.26.0",
|
||||
"@luxass/strip-json-comments": "^1.3.2",
|
||||
"@marko/babel-utils": "^6.6.1",
|
||||
"@marko/babel-utils": "^6.6.2",
|
||||
"complain": "^1.6.1",
|
||||
"he": "^1.2.0",
|
||||
"htmljs-parser": "^5.5.2",
|
||||
|
||||
@ -1,5 +1,13 @@
|
||||
# @marko/runtime-tags
|
||||
|
||||
## 0.2.4
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2399](https://github.com/marko-js/marko/pull/2399) [`032afa1`](https://github.com/marko-js/marko/commit/032afa125b19969346639ac99ae9740521d0c3a2) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Refactor and improve logic around functon registration, binding renaming, and binding assignments.
|
||||
|
||||
- [#2401](https://github.com/marko-js/marko/pull/2401) [`46f8d7c`](https://github.com/marko-js/marko/commit/46f8d7cfba231d1ab724fec83f07d1192d5d4d7f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add support for tags API script tag.
|
||||
|
||||
## 0.2.3
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/runtime-tags",
|
||||
"version": "0.2.3",
|
||||
"version": "0.2.4",
|
||||
"description": "Optimized runtime for Marko templates.",
|
||||
"keywords": [
|
||||
"api",
|
||||
|
||||
@ -1,5 +1,17 @@
|
||||
# @marko/translator-tags
|
||||
|
||||
## 0.4.7
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2399](https://github.com/marko-js/marko/pull/2399) [`032afa1`](https://github.com/marko-js/marko/commit/032afa125b19969346639ac99ae9740521d0c3a2) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Refactor and improve logic around functon registration, binding renaming, and binding assignments.
|
||||
|
||||
- [#2401](https://github.com/marko-js/marko/pull/2401) [`46f8d7c`](https://github.com/marko-js/marko/commit/46f8d7cfba231d1ab724fec83f07d1192d5d4d7f) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add support for tags API script tag.
|
||||
|
||||
- Updated dependencies [[`032afa1`](https://github.com/marko-js/marko/commit/032afa125b19969346639ac99ae9740521d0c3a2), [`46f8d7c`](https://github.com/marko-js/marko/commit/46f8d7cfba231d1ab724fec83f07d1192d5d4d7f)]:
|
||||
- @marko/runtime-tags@0.2.4
|
||||
- @marko/babel-utils@6.6.2
|
||||
|
||||
## 0.4.6
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/translator-tags",
|
||||
"version": "0.4.6",
|
||||
"version": "0.4.7",
|
||||
"description": "Translates Marko templates to the experimental fast, lean, unified, update & render target.",
|
||||
"keywords": [
|
||||
"babel",
|
||||
@ -30,8 +30,8 @@
|
||||
"build": "node -r ~ts ./scripts/bundle.ts"
|
||||
},
|
||||
"dependencies": {
|
||||
"@marko/babel-utils": "^6.6.1",
|
||||
"@marko/runtime-tags": "^0.2.3"
|
||||
"@marko/babel-utils": "^6.6.2",
|
||||
"@marko/runtime-tags": "^0.2.4"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.23.0"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user