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
ba110fb990
commit
cfaa89660c
@ -1,7 +0,0 @@
|
||||
---
|
||||
"@marko/translator-default": patch
|
||||
"@marko/compiler": patch
|
||||
"marko": patch
|
||||
---
|
||||
|
||||
Fix issue where vdom optimizer was including elements with user key attributes.
|
||||
@ -1,5 +0,0 @@
|
||||
---
|
||||
"marko": patch
|
||||
---
|
||||
|
||||
Remove dependency on setTimeout which is not implemented in some isolates
|
||||
16
package-lock.json
generated
16
package-lock.json
generated
@ -11961,7 +11961,7 @@
|
||||
},
|
||||
"packages/compiler": {
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.35.7",
|
||||
"version": "5.35.8",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/code-frame": "^7.23.5",
|
||||
@ -11989,7 +11989,7 @@
|
||||
"source-map-support": "^0.5.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/translator-default": "^5.32.8"
|
||||
"@marko/translator-default": "^5.32.9"
|
||||
}
|
||||
},
|
||||
"packages/compiler/node_modules/jsesc": {
|
||||
@ -12003,11 +12003,11 @@
|
||||
}
|
||||
},
|
||||
"packages/marko": {
|
||||
"version": "5.33.9",
|
||||
"version": "5.33.10",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.35.7",
|
||||
"@marko/translator-default": "^5.32.8",
|
||||
"@marko/compiler": "^5.35.8",
|
||||
"@marko/translator-default": "^5.32.9",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
@ -12032,7 +12032,7 @@
|
||||
},
|
||||
"packages/translator-default": {
|
||||
"name": "@marko/translator-default",
|
||||
"version": "5.32.8",
|
||||
"version": "5.32.9",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@babel/runtime": "^7.24.0",
|
||||
@ -12041,8 +12041,8 @@
|
||||
"self-closing-tags": "^1.0.1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/compiler": "^5.35.7",
|
||||
"marko": "^5.33.8"
|
||||
"@marko/compiler": "^5.35.8",
|
||||
"marko": "^5.33.10"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.16.1",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.35.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2180](https://github.com/marko-js/marko/pull/2180) [`a8bfb50`](https://github.com/marko-js/marko/commit/a8bfb50d7617d338c8e6b11c3f18cbb4829a5cba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where vdom optimizer was including elements with user key attributes.
|
||||
|
||||
## 5.35.7
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/compiler",
|
||||
"version": "5.35.7",
|
||||
"version": "5.35.8",
|
||||
"description": "Marko template to JS compiler.",
|
||||
"keywords": [
|
||||
"babel",
|
||||
@ -80,7 +80,7 @@
|
||||
"source-map-support": "^0.5.21"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@marko/translator-default": "^5.32.8"
|
||||
"@marko/translator-default": "^5.32.9"
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
|
||||
@ -1,5 +1,17 @@
|
||||
# Change Log
|
||||
|
||||
## 5.33.10
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2180](https://github.com/marko-js/marko/pull/2180) [`a8bfb50`](https://github.com/marko-js/marko/commit/a8bfb50d7617d338c8e6b11c3f18cbb4829a5cba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where vdom optimizer was including elements with user key attributes.
|
||||
|
||||
- [#2177](https://github.com/marko-js/marko/pull/2177) [`ba110fb`](https://github.com/marko-js/marko/commit/ba110fb99092ffa1a254ab369626cba4a6e83430) Thanks [@rturnq](https://github.com/rturnq)! - Remove dependency on setTimeout which is not implemented in some isolates
|
||||
|
||||
- Updated dependencies [[`a8bfb50`](https://github.com/marko-js/marko/commit/a8bfb50d7617d338c8e6b11c3f18cbb4829a5cba)]:
|
||||
- @marko/translator-default@5.32.9
|
||||
- @marko/compiler@5.35.8
|
||||
|
||||
## 5.33.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "marko",
|
||||
"version": "5.33.9",
|
||||
"version": "5.33.10",
|
||||
"description": "UI Components + streaming, async, high performance, HTML templating for Node.js and the browser.",
|
||||
"keywords": [
|
||||
"front-end",
|
||||
@ -64,8 +64,8 @@
|
||||
"build": "babel ./src --out-dir ./dist --extensions .js --copy-files --config-file ../../babel.config.js --env-name=production"
|
||||
},
|
||||
"dependencies": {
|
||||
"@marko/compiler": "^5.35.7",
|
||||
"@marko/translator-default": "^5.32.8",
|
||||
"@marko/compiler": "^5.35.8",
|
||||
"@marko/translator-default": "^5.32.9",
|
||||
"app-module-path": "^2.2.0",
|
||||
"argly": "^1.2.0",
|
||||
"browser-refresh-client": "1.1.4",
|
||||
|
||||
@ -1,5 +1,11 @@
|
||||
# Change Log
|
||||
|
||||
## 5.32.9
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- [#2180](https://github.com/marko-js/marko/pull/2180) [`a8bfb50`](https://github.com/marko-js/marko/commit/a8bfb50d7617d338c8e6b11c3f18cbb4829a5cba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix issue where vdom optimizer was including elements with user key attributes.
|
||||
|
||||
## 5.32.8
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@marko/translator-default",
|
||||
"version": "5.32.8",
|
||||
"version": "5.32.9",
|
||||
"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.35.7",
|
||||
"marko": "^5.33.8"
|
||||
"@marko/compiler": "^5.35.8",
|
||||
"marko": "^5.33.10"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"@marko/compiler": "^5.16.1",
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user