[ci] release

This commit is contained in:
github-actions[bot] 2024-06-20 16:53:47 +00:00 committed by Dylan Piercey
parent bfe85d1877
commit 556769014c
19 changed files with 107 additions and 66 deletions

View File

@ -1,5 +0,0 @@
---
"@marko/compiler": patch
---
When loading a taglib, always process exports field if inside node_modules folder.

View File

@ -1,11 +0,0 @@
---
"@marko/translator-default": patch
"@marko/babel-utils": patch
"@marko/compiler": patch
"marko": patch
"@marko/runtime-tags": patch
"@marko/translator-interop-class-tags": patch
"@marko/translator-tags": patch
---
Allow diagnostic fixes in parse stage.

View File

@ -1,5 +0,0 @@
---
"@marko/translator-default": patch
---
Reduce duplicated macros from an error to a warning.

View File

@ -1,5 +0,0 @@
---
"@marko/translator-default": patch
---
Add auto fix for named inline component classes

40
package-lock.json generated
View File

@ -11987,7 +11987,7 @@
},
"packages/babel-utils": {
"name": "@marko/babel-utils",
"version": "6.5.0",
"version": "6.5.1",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.24.1",
@ -11995,7 +11995,7 @@
"relative-import-path": "^1.0.0"
},
"devDependencies": {
"@marko/compiler": "^5.37.0"
"@marko/compiler": "^5.37.4"
}
},
"packages/babel-utils/node_modules/jsesc": {
@ -12010,7 +12010,7 @@
},
"packages/compiler": {
"name": "@marko/compiler",
"version": "5.37.3",
"version": "5.37.4",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.24.2",
@ -12024,7 +12024,7 @@
"@babel/traverse": "^7.24.1",
"@babel/types": "^7.24.0",
"@luxass/strip-json-comments": "^1.2.0",
"@marko/babel-utils": "^6.5.0",
"@marko/babel-utils": "^6.5.1",
"complain": "^1.6.0",
"he": "^1.2.0",
"htmljs-parser": "^5.5.2",
@ -12038,7 +12038,7 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@marko/translator-default": "^6.0.4"
"@marko/translator-default": "^6.0.5"
}
},
"packages/compiler/node_modules/jsesc": {
@ -12052,11 +12052,11 @@
}
},
"packages/marko": {
"version": "5.35.4",
"version": "5.35.5",
"license": "MIT",
"dependencies": {
"@marko/compiler": "^5.37.3",
"@marko/translator-default": "^6.0.4",
"@marko/compiler": "^5.37.4",
"@marko/translator-default": "^6.0.5",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",
@ -12090,22 +12090,22 @@
},
"packages/runtime-tags": {
"name": "@marko/runtime-tags",
"version": "0.1.6",
"version": "0.1.7",
"license": "MIT"
},
"packages/translator-default": {
"name": "@marko/translator-default",
"version": "6.0.4",
"version": "6.0.5",
"license": "MIT",
"dependencies": {
"@babel/runtime": "^7.24.1",
"@marko/babel-utils": "^6.4.3",
"@marko/babel-utils": "^6.5.1",
"magic-string": "^0.30.8",
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.37.3",
"marko": "^5.35.3"
"@marko/compiler": "^5.37.4",
"marko": "^5.35.5"
},
"peerDependencies": {
"@marko/compiler": "^5.16.1",
@ -12114,13 +12114,13 @@
},
"packages/translator-interop": {
"name": "@marko/translator-interop-class-tags",
"version": "0.1.17",
"version": "0.1.18",
"license": "MIT",
"dependencies": {
"@babel/code-frame": "^7.24.2",
"@marko/babel-utils": "^6.5.0",
"@marko/translator-default": "^6.0.4",
"@marko/translator-tags": "^0.2.0"
"@marko/babel-utils": "^6.5.1",
"@marko/translator-default": "^6.0.5",
"@marko/translator-tags": "^0.2.2"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"
@ -12128,11 +12128,11 @@
},
"packages/translator-tags": {
"name": "@marko/translator-tags",
"version": "0.2.1",
"version": "0.2.2",
"license": "MIT",
"dependencies": {
"@marko/babel-utils": "^6.5.0",
"@marko/runtime-tags": "^0.1.6"
"@marko/babel-utils": "^6.5.1",
"@marko/runtime-tags": "^0.1.7"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"

View File

@ -1,5 +1,11 @@
# Change Log
## 6.5.1
### Patch Changes
- [#2252](https://github.com/marko-js/marko/pull/2252) [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow diagnostic fixes in parse stage.
## 6.5.0
### Minor Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/babel-utils",
"version": "6.5.0",
"version": "6.5.1",
"description": "Utilities for use with Marko babel plugins.",
"keywords": [
"htmljs",
@ -33,7 +33,7 @@
"relative-import-path": "^1.0.0"
},
"devDependencies": {
"@marko/compiler": "^5.37.0"
"@marko/compiler": "^5.37.4"
},
"publishConfig": {
"access": "public"

View File

@ -1,5 +1,16 @@
# Change Log
## 5.37.4
### Patch Changes
- [#2252](https://github.com/marko-js/marko/pull/2252) [`bfe85d1`](https://github.com/marko-js/marko/commit/bfe85d18772f244abfced05d7cde5698b7e077ec) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - When loading a taglib, always process exports field if inside node_modules folder.
- [#2252](https://github.com/marko-js/marko/pull/2252) [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow diagnostic fixes in parse stage.
- Updated dependencies [[`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba)]:
- @marko/babel-utils@6.5.1
## 5.37.3
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/compiler",
"version": "5.37.3",
"version": "5.37.4",
"description": "Marko template to JS compiler.",
"keywords": [
"babel",
@ -66,7 +66,7 @@
"@babel/traverse": "^7.24.1",
"@babel/types": "^7.24.0",
"@luxass/strip-json-comments": "^1.2.0",
"@marko/babel-utils": "^6.5.0",
"@marko/babel-utils": "^6.5.1",
"complain": "^1.6.0",
"he": "^1.2.0",
"htmljs-parser": "^5.5.2",
@ -80,7 +80,7 @@
"source-map-support": "^0.5.21"
},
"devDependencies": {
"@marko/translator-default": "^6.0.4"
"@marko/translator-default": "^6.0.5"
},
"publishConfig": {
"access": "public"

View File

@ -1,5 +1,15 @@
# Change Log
## 5.35.5
### Patch Changes
- [#2252](https://github.com/marko-js/marko/pull/2252) [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow diagnostic fixes in parse stage.
- Updated dependencies [[`bfe85d1`](https://github.com/marko-js/marko/commit/bfe85d18772f244abfced05d7cde5698b7e077ec), [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba), [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba), [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba)]:
- @marko/compiler@5.37.4
- @marko/translator-default@6.0.5
## 5.35.4
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "marko",
"version": "5.35.4",
"version": "5.35.5",
"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.3",
"@marko/translator-default": "^6.0.4",
"@marko/compiler": "^5.37.4",
"@marko/translator-default": "^6.0.5",
"app-module-path": "^2.2.0",
"argly": "^1.2.0",
"browser-refresh-client": "1.1.4",

View File

@ -1,5 +1,11 @@
# @marko/runtime-tags
## 0.1.7
### Patch Changes
- [#2252](https://github.com/marko-js/marko/pull/2252) [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow diagnostic fixes in parse stage.
## 0.1.6
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/runtime-tags",
"version": "0.1.6",
"version": "0.1.7",
"description": "Optimized runtime for Marko templates.",
"keywords": [
"api",

View File

@ -1,5 +1,18 @@
# Change Log
## 6.0.5
### Patch Changes
- [#2252](https://github.com/marko-js/marko/pull/2252) [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow diagnostic fixes in parse stage.
- [#2252](https://github.com/marko-js/marko/pull/2252) [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Reduce duplicated macros from an error to a warning.
- [#2252](https://github.com/marko-js/marko/pull/2252) [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Add auto fix for named inline component classes
- Updated dependencies [[`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba)]:
- @marko/babel-utils@6.5.1
## 6.0.4
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-default",
"version": "6.0.4",
"version": "6.0.5",
"description": "Translates Marko templates to the default Marko runtime.",
"keywords": [
"babel",
@ -29,13 +29,13 @@
},
"dependencies": {
"@babel/runtime": "^7.24.1",
"@marko/babel-utils": "^6.4.3",
"@marko/babel-utils": "^6.5.1",
"magic-string": "^0.30.8",
"self-closing-tags": "^1.0.1"
},
"devDependencies": {
"@marko/compiler": "^5.37.3",
"marko": "^5.35.3"
"@marko/compiler": "^5.37.4",
"marko": "^5.35.5"
},
"peerDependencies": {
"@marko/compiler": "^5.16.1",

View File

@ -1,5 +1,16 @@
# @marko/translator-interop-class-tags
## 0.1.18
### Patch Changes
- [#2252](https://github.com/marko-js/marko/pull/2252) [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow diagnostic fixes in parse stage.
- Updated dependencies [[`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba), [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba), [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba)]:
- @marko/translator-default@6.0.5
- @marko/babel-utils@6.5.1
- @marko/translator-tags@0.2.2
## 0.1.17
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-interop-class-tags",
"version": "0.1.17",
"version": "0.1.18",
"description": "Combines the Class API translator from Marko 5 and the Tags API translator from Marko 6",
"keywords": [
"babel",
@ -29,9 +29,9 @@
},
"dependencies": {
"@babel/code-frame": "^7.24.2",
"@marko/babel-utils": "^6.5.0",
"@marko/translator-default": "^6.0.4",
"@marko/translator-tags": "^0.2.0"
"@marko/babel-utils": "^6.5.1",
"@marko/translator-default": "^6.0.5",
"@marko/translator-tags": "^0.2.2"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"

View File

@ -1,5 +1,15 @@
# @marko/translator-tags
## 0.2.2
### Patch Changes
- [#2252](https://github.com/marko-js/marko/pull/2252) [`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Allow diagnostic fixes in parse stage.
- Updated dependencies [[`339c28d`](https://github.com/marko-js/marko/commit/339c28dd590dc15b6a1011f38411809060f1a4ba)]:
- @marko/babel-utils@6.5.1
- @marko/runtime-tags@0.1.7
## 0.2.1
### Patch Changes

View File

@ -1,6 +1,6 @@
{
"name": "@marko/translator-tags",
"version": "0.2.1",
"version": "0.2.2",
"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.5.0",
"@marko/runtime-tags": "^0.1.6"
"@marko/babel-utils": "^6.5.1",
"@marko/runtime-tags": "^0.1.7"
},
"peerDependencies": {
"@marko/compiler": "^5.23.0"