mirror of
https://github.com/marko-js/marko.git
synced 2025-12-08 19:26:05 +00:00
[ci] release
This commit is contained in:
parent
55338b5296
commit
3286eac816
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@marko/translator-default": patch
|
||||
"@marko/compiler": patch
|
||||
"marko": patch
|
||||
---
|
||||
|
||||
Optimize template literal printing in html output.
|
||||
16
package-lock.json
generated
16
package-lock.json
generated
@ -10983,7 +10983,7 @@
|
||||
},
|
||||
"packages/compiler": {
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.37.8",
|
||||
"version": "5.37.9",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.24.7",
|
||||
@ -11011,7 +11011,7 @@
|
||||
"source-map-support": "^0.5.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/translator-default": "^6.0.10"
|
||||
"@marko/translator-default": "^6.0.11"
|
||||
}
|
||||
},
|
||||
"packages/compiler/node_modules/jsesc": {
|
||||
@ -11025,11 +11025,11 @@
|
||||
}
|
||||
},
|
||||
"packages/marko": {
|
||||
"version": "5.35.12",
|
||||
"version": "5.35.13",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.37.8",
|
||||
"@marko/translator-default": "^6.0.10",
|
||||
"@marko/compiler": "^5.37.9",
|
||||
"@marko/translator-default": "^6.0.11",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
@ -11074,7 +11074,7 @@
|
||||
},
|
||||
"packages/translator-default": {
|
||||
"name": "@marko/translator-default",
|
||||
"version": "6.0.10",
|
||||
"version": "6.0.11",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.25.0",
|
||||
@ -11083,8 +11083,8 @@
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.37.8",
|
||||
"marko": "^5.35.12"
|
||||
"@marko/compiler": "^5.37.9",
|
||||
"marko": "^5.35.13"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.16.1",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.37.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2286](https://github.com/marko-js/marko/pull/2286) [`55338b5`](https://github.com/marko-js/marko/commit/55338b52969817b63c90ea84f30246ad0b94b6f9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Optimize template literal printing in html output.
|
||||
|
||||
## 5.37.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.37.8",
|
||||
"version": "5.37.9",
|
||||
"description": "Marko template to JS compiler.",
|
||||
"keywords": [
|
||||
"babel",
|
||||
@ -80,7 +80,7 @@
|
||||
"source-map-support": "^0.5.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/translator-default": "^6.0.10"
|
||||
"@marko/translator-default": "^6.0.11"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
@ -1,5 +1,15 @@
|
||||
# Change Log
|
||||
|
||||
## 5.35.13
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2286](https://github.com/marko-js/marko/pull/2286) [`55338b5`](https://github.com/marko-js/marko/commit/55338b52969817b63c90ea84f30246ad0b94b6f9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Optimize template literal printing in html output.
|
||||
|
||||
- Updated dependencies [[`55338b5`](https://github.com/marko-js/marko/commit/55338b52969817b63c90ea84f30246ad0b94b6f9)]:
|
||||
- @marko/translator-default@6.0.11
|
||||
- @marko/compiler@5.37.9
|
||||
|
||||
## 5.35.12
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "marko",
|
||||
"version": "5.35.12",
|
||||
"version": "5.35.13",
|
||||
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
||||
"keywords": [
|
||||
"front-end",
|
||||
@ -65,8 +65,8 @@
|
||||
"build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
|
||||
},
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.37.8",
|
||||
"@marko/translator-default": "^6.0.10",
|
||||
"@marko/compiler": "^5.37.9",
|
||||
"@marko/translator-default": "^6.0.11",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 6.0.11
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2286](https://github.com/marko-js/marko/pull/2286) [`55338b5`](https://github.com/marko-js/marko/commit/55338b52969817b63c90ea84f30246ad0b94b6f9) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Optimize template literal printing in html output.
|
||||
|
||||
## 6.0.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/translator-default",
|
||||
"version": "6.0.10",
|
||||
"version": "6.0.11",
|
||||
"description": "Translates Marko templates to the default Marko runtime.",
|
||||
"keywords": [
|
||||
"babel",
|
||||
@ -34,8 +34,8 @@
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.37.8",
|
||||
"marko": "^5.35.12"
|
||||
"@marko/compiler": "^5.37.9",
|
||||
"marko": "^5.35.13"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.16.1",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user