Skip to content

Commit 512b5cb

Browse files
[ci] release (#548)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent 58e58ef commit 512b5cb

12 files changed

Lines changed: 56 additions & 29 deletions

File tree

.changeset/upgrade-htmljs-parser.md

Lines changed: 0 additions & 9 deletions
This file was deleted.

package-lock.json

Lines changed: 10 additions & 10 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

packages/language-server/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# Change Log
22

3+
## 3.2.4
4+
5+
### Patch Changes
6+
7+
- [#547](https://github.com/marko-js/language-server/pull/547) [`58e58ef`](https://github.com/marko-js/language-server/commit/58e58ef96578334c2251812933cab8f674031bb2) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Upgrade `htmljs-parser` to `^5.12.1`, which fixes a parse error where a `<`/`>` comparison inside a `static`/`server`/`client` function with a return-type annotation was treated as a generic bracket, swallowing the rest of the template (e.g. breaking "Show Extracted Script Output").
8+
9+
- Updated dependencies [[`58e58ef`](https://github.com/marko-js/language-server/commit/58e58ef96578334c2251812933cab8f674031bb2)]:
10+
- @marko/language-tools@2.6.3
11+
312
## 3.2.3
413

514
### Patch Changes

packages/language-server/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@marko/language-server",
3-
"version": "3.2.3",
3+
"version": "3.2.4",
44
"description": "Marko Language Server",
55
"keywords": [
66
"autocomplete",
@@ -40,7 +40,7 @@
4040
"dependencies": {
4141
"@luxass/strip-json-comments": "^1.4.0",
4242
"@marko/compiler": "^5.39.66",
43-
"@marko/language-tools": "^2.6.2",
43+
"@marko/language-tools": "^2.6.3",
4444
"axe-core": "^4.12.1",
4545
"htmljs-parser": "^5.12.1",
4646
"jsdom": "^29.1.1",

packages/language-tools/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @marko/language-tools
22

3+
## 2.6.3
4+
5+
### Patch Changes
6+
7+
- [#547](https://github.com/marko-js/language-server/pull/547) [`58e58ef`](https://github.com/marko-js/language-server/commit/58e58ef96578334c2251812933cab8f674031bb2) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Upgrade `htmljs-parser` to `^5.12.1`, which fixes a parse error where a `<`/`>` comparison inside a `static`/`server`/`client` function with a return-type annotation was treated as a generic bracket, swallowing the rest of the template (e.g. breaking "Show Extracted Script Output").
8+
39
## 2.6.2
410

511
### Patch Changes

packages/language-tools/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@marko/language-tools",
3-
"version": "2.6.2",
3+
"version": "2.6.3",
44
"description": "Marko Language Tools",
55
"keywords": [
66
"analysis",

packages/ts-plugin/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# @marko/ts-plugin
22

3+
## 3.1.6
4+
5+
### Patch Changes
6+
7+
- [#547](https://github.com/marko-js/language-server/pull/547) [`58e58ef`](https://github.com/marko-js/language-server/commit/58e58ef96578334c2251812933cab8f674031bb2) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Upgrade `htmljs-parser` to `^5.12.1`, which fixes a parse error where a `<`/`>` comparison inside a `static`/`server`/`client` function with a return-type annotation was treated as a generic bracket, swallowing the rest of the template (e.g. breaking "Show Extracted Script Output").
8+
39
## 3.1.5
410

511
### Patch Changes

packages/ts-plugin/package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@marko/ts-plugin",
3-
"version": "3.1.5",
3+
"version": "3.1.6",
44
"description": "TypeScript Server plugin that resolves Marko (.marko) imports with types inside TypeScript files",
55
"keywords": [
66
"marko",
@@ -26,8 +26,8 @@
2626
"build": "tsx build.mts"
2727
},
2828
"devDependencies": {
29-
"@marko/language-server": "^3.2.3",
30-
"@marko/language-tools": "^2.6.2",
29+
"@marko/language-server": "^3.2.4",
30+
"@marko/language-tools": "^2.6.3",
3131
"marko": "^5.39.11",
3232
"tsx": "^4.22.4",
3333
"typescript": "^6.0.3"

packages/type-check/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
# @marko/type-check
22

3+
## 3.1.2
4+
5+
### Patch Changes
6+
7+
- [#547](https://github.com/marko-js/language-server/pull/547) [`58e58ef`](https://github.com/marko-js/language-server/commit/58e58ef96578334c2251812933cab8f674031bb2) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Upgrade `htmljs-parser` to `^5.12.1`, which fixes a parse error where a `<`/`>` comparison inside a `static`/`server`/`client` function with a return-type annotation was treated as a generic bracket, swallowing the rest of the template (e.g. breaking "Show Extracted Script Output").
8+
9+
- Updated dependencies [[`58e58ef`](https://github.com/marko-js/language-server/commit/58e58ef96578334c2251812933cab8f674031bb2)]:
10+
- @marko/language-tools@2.6.3
11+
312
## 3.1.1
413

514
### Patch Changes

packages/type-check/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@marko/type-check",
3-
"version": "3.1.1",
3+
"version": "3.1.2",
44
"description": "A CLI to type check Marko projects",
55
"keywords": [
66
"type-check",
@@ -31,7 +31,7 @@
3131
"dependencies": {
3232
"@luxass/strip-json-comments": "^1.4.0",
3333
"@marko/compiler": "^5.39.66",
34-
"@marko/language-tools": "^2.6.2",
34+
"@marko/language-tools": "^2.6.3",
3535
"arg": "^5.0.2",
3636
"kleur": "^4.1.5",
3737
"typescript": "^6.0.3"

0 commit comments

Comments
 (0)