diff --git a/.changeset/stale-starfishes-sing.md b/.changeset/stale-starfishes-sing.md deleted file mode 100644 index 306a55e8..00000000 --- a/.changeset/stale-starfishes-sing.md +++ /dev/null @@ -1,8 +0,0 @@ ---- -"@marko/language-tools": patch -"@marko/language-server": patch -"@marko/type-check": patch -"marko-vscode": patch ---- - -Fix type issue in the internal language tool types. diff --git a/package-lock.json b/package-lock.json index 1dda1c1b..b8063c5f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -9286,13 +9286,13 @@ }, "packages/language-server": { "name": "@marko/language-server", - "version": "1.4.7", + "version": "1.4.8", "license": "MIT", "dependencies": { "@luxass/strip-json-comments": "^1.3.2", "@marko/babel-utils": "^6.6.3", "@marko/compiler": "^5.39.6", - "@marko/language-tools": "^2.5.6", + "@marko/language-tools": "^2.5.7", "axe-core": "^4.10.2", "htmljs-parser": "^5.5.3", "jsdom": "^25.0.1", @@ -9316,7 +9316,7 @@ }, "packages/language-tools": { "name": "@marko/language-tools", - "version": "2.5.6", + "version": "2.5.7", "license": "MIT", "dependencies": { "@babel/parser": "^7.26.3", @@ -9339,12 +9339,12 @@ }, "packages/type-check": { "name": "@marko/type-check", - "version": "1.3.6", + "version": "1.3.7", "license": "MIT", "dependencies": { "@babel/code-frame": "^7.26.2", "@luxass/strip-json-comments": "^1.3.2", - "@marko/language-tools": "^2.5.6", + "@marko/language-tools": "^2.5.7", "arg": "^5.0.2", "kleur": "^4.1.5", "typescript": "^5.7.2" @@ -9359,10 +9359,10 @@ }, "packages/vscode": { "name": "marko-vscode", - "version": "1.5.7", + "version": "1.5.8", "license": "MIT", "devDependencies": { - "@marko/language-server": "^1.4.7", + "@marko/language-server": "^1.4.8", "@types/vscode": "^1.80.0", "@vscode/test-electron": "^2.4.1", "@vscode/vsce": "^3.2.1", diff --git a/packages/language-server/CHANGELOG.md b/packages/language-server/CHANGELOG.md index a0eb6813..b74acfd6 100644 --- a/packages/language-server/CHANGELOG.md +++ b/packages/language-server/CHANGELOG.md @@ -1,5 +1,14 @@ # Change Log +## 1.4.8 + +### Patch Changes + +- [#326](https://github.com/marko-js/language-server/pull/326) [`b65c79b`](https://github.com/marko-js/language-server/commit/b65c79bd5afb960129a00d1455048d51a5d9800a) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix type issue in the internal language tool types. + +- Updated dependencies [[`b65c79b`](https://github.com/marko-js/language-server/commit/b65c79bd5afb960129a00d1455048d51a5d9800a)]: + - @marko/language-tools@2.5.7 + ## 1.4.7 ### Patch Changes diff --git a/packages/language-server/package.json b/packages/language-server/package.json index b35db3f2..335a6216 100644 --- a/packages/language-server/package.json +++ b/packages/language-server/package.json @@ -1,14 +1,14 @@ { "name": "@marko/language-server", "description": "Marko Language Server", - "version": "1.4.7", + "version": "1.4.8", "bin": { "marko-language-server": "./bin.js" }, "bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md", "dependencies": { "@luxass/strip-json-comments": "^1.3.2", - "@marko/language-tools": "^2.5.6", + "@marko/language-tools": "^2.5.7", "@marko/babel-utils": "^6.6.3", "@marko/compiler": "^5.39.6", "htmljs-parser": "^5.5.3", diff --git a/packages/language-tools/CHANGELOG.md b/packages/language-tools/CHANGELOG.md index 786ed565..4c825bda 100644 --- a/packages/language-tools/CHANGELOG.md +++ b/packages/language-tools/CHANGELOG.md @@ -1,5 +1,11 @@ # @marko/language-tools +## 2.5.7 + +### Patch Changes + +- [#326](https://github.com/marko-js/language-server/pull/326) [`b65c79b`](https://github.com/marko-js/language-server/commit/b65c79bd5afb960129a00d1455048d51a5d9800a) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix type issue in the internal language tool types. + ## 2.5.6 ### Patch Changes diff --git a/packages/language-tools/package.json b/packages/language-tools/package.json index ddce32dc..e342d797 100644 --- a/packages/language-tools/package.json +++ b/packages/language-tools/package.json @@ -1,7 +1,7 @@ { "name": "@marko/language-tools", "description": "Marko Language Tools", - "version": "2.5.6", + "version": "2.5.7", "bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md", "peerDependencies": { "@marko/compiler": "^5.28.4" diff --git a/packages/type-check/CHANGELOG.md b/packages/type-check/CHANGELOG.md index fbbf39fc..72ad4b5a 100644 --- a/packages/type-check/CHANGELOG.md +++ b/packages/type-check/CHANGELOG.md @@ -1,5 +1,14 @@ # @marko/type-check +## 1.3.7 + +### Patch Changes + +- [#326](https://github.com/marko-js/language-server/pull/326) [`b65c79b`](https://github.com/marko-js/language-server/commit/b65c79bd5afb960129a00d1455048d51a5d9800a) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix type issue in the internal language tool types. + +- Updated dependencies [[`b65c79b`](https://github.com/marko-js/language-server/commit/b65c79bd5afb960129a00d1455048d51a5d9800a)]: + - @marko/language-tools@2.5.7 + ## 1.3.6 ### Patch Changes diff --git a/packages/type-check/package.json b/packages/type-check/package.json index 3d90244b..ffe28deb 100644 --- a/packages/type-check/package.json +++ b/packages/type-check/package.json @@ -1,12 +1,12 @@ { "name": "@marko/type-check", "description": "A CLI to type check Marko projects", - "version": "1.3.6", + "version": "1.3.7", "bugs": "https://github.com/marko-js/language-server/issues/new?template=Bug_report.md", "dependencies": { "@babel/code-frame": "^7.26.2", "@luxass/strip-json-comments": "^1.3.2", - "@marko/language-tools": "^2.5.6", + "@marko/language-tools": "^2.5.7", "arg": "^5.0.2", "kleur": "^4.1.5", "typescript": "^5.7.2" diff --git a/packages/vscode/CHANGELOG.md b/packages/vscode/CHANGELOG.md index d7b7d51f..23478374 100644 --- a/packages/vscode/CHANGELOG.md +++ b/packages/vscode/CHANGELOG.md @@ -1,5 +1,11 @@ # Change Log +## 1.5.8 + +### Patch Changes + +- [#326](https://github.com/marko-js/language-server/pull/326) [`b65c79b`](https://github.com/marko-js/language-server/commit/b65c79bd5afb960129a00d1455048d51a5d9800a) Thanks [@DylanPiercey](https://github.com/DylanPiercey)! - Fix type issue in the internal language tool types. + ## 1.5.7 ### Patch Changes diff --git a/packages/vscode/package.json b/packages/vscode/package.json index 0b64c517..5d24e4aa 100644 --- a/packages/vscode/package.json +++ b/packages/vscode/package.json @@ -1,7 +1,7 @@ { "name": "marko-vscode", "description": "Marko Syntax Highlighting, Pretty-printing, TypeScript, IntelliSense, and more", - "version": "1.5.7", + "version": "1.5.8", "activationEvents": [ "workspaceContains:**/*.marko" ], @@ -103,7 +103,7 @@ } }, "devDependencies": { - "@marko/language-server": "^1.4.7", + "@marko/language-server": "^1.4.8", "@types/vscode": "^1.80.0", "@vscode/test-electron": "^2.4.1", "@vscode/vsce": "^3.2.1",