Skip to content

Commit d40952a

Browse files
Version Packages
1 parent fa0a6cf commit d40952a

13 files changed

Lines changed: 56 additions & 37 deletions

File tree

.changeset/eighty-cats-glow.md

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

.changeset/legal-crews-visit.md

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

.changeset/olive-tips-appear.md

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

.changeset/petite-keys-count.md

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

.changeset/social-items-cut.md

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

packages/language-server/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# @mdx-js/language-server
22

3+
## 0.6.0
4+
5+
### Minor Changes
6+
7+
- [#499](https://github.com/mdx-js/mdx-analyzer/pull/499) [`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Remove support for Node.js 18
8+
9+
- [#500](https://github.com/mdx-js/mdx-analyzer/pull/500) [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Use jiti to load ESM synchronously
10+
11+
### Patch Changes
12+
13+
- [#491](https://github.com/mdx-js/mdx-analyzer/pull/491) [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Enhance support for auto-imports
14+
15+
- Updated dependencies [[`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b), [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e), [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6)]:
16+
- @mdx-js/language-service@0.7.0
17+
318
## 0.5.2
419

520
### 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": "@mdx-js/language-server",
3-
"version": "0.5.2",
3+
"version": "0.6.0",
44
"type": "module",
55
"description": "A language server for MDX",
66
"repository": {
@@ -31,7 +31,7 @@
3131
"test": "npm run test-api"
3232
},
3333
"dependencies": {
34-
"@mdx-js/language-service": "0.6.2",
34+
"@mdx-js/language-service": "0.7.0",
3535
"@volar/language-server": "~2.4.0",
3636
"jiti": "^2.0.0",
3737
"remark-frontmatter": "^5.0.0",

packages/language-service/CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# @mdx-js/language-service
22

3+
## 0.7.0
4+
5+
### Minor Changes
6+
7+
- [#499](https://github.com/mdx-js/mdx-analyzer/pull/499) [`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Remove support for Node.js 18
8+
9+
- [#500](https://github.com/mdx-js/mdx-analyzer/pull/500) [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Make resolveRemarkPlugins synchronous
10+
11+
### Patch Changes
12+
13+
- [#491](https://github.com/mdx-js/mdx-analyzer/pull/491) [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Enhance support for auto-imports
14+
315
## 0.6.2
416

517
### Patch Changes

packages/language-service/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@mdx-js/language-service",
3-
"version": "0.6.2",
3+
"version": "0.7.0",
44
"type": "module",
55
"description": "MDX support for Volar",
66
"repository": {

packages/typescript-plugin/CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## 0.1.0
4+
5+
### Minor Changes
6+
7+
- [#500](https://github.com/mdx-js/mdx-analyzer/pull/500) [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Make the plugin synchronous
8+
9+
- [#499](https://github.com/mdx-js/mdx-analyzer/pull/499) [`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Remove support for Node.js 18
10+
11+
- [#500](https://github.com/mdx-js/mdx-analyzer/pull/500) [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Use jiti to load ESM synchronously
12+
13+
### Patch Changes
14+
15+
- [#491](https://github.com/mdx-js/mdx-analyzer/pull/491) [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e) Thanks [@remcohaszing](https://github.com/remcohaszing)! - Enhance support for auto-imports
16+
17+
- Updated dependencies [[`d440c79`](https://github.com/mdx-js/mdx-analyzer/commit/d440c794badd83ba100e86cde9c19c819005116b), [`8f6c987`](https://github.com/mdx-js/mdx-analyzer/commit/8f6c9875647f203f8ebe693cb3603fc94f84d42e), [`48d74c8`](https://github.com/mdx-js/mdx-analyzer/commit/48d74c8147c1d5fc6d5c079d06f8d6076939afd6)]:
18+
- @mdx-js/language-service@0.7.0
19+
320
## 0.0.8
421

522
### Patch Changes

0 commit comments

Comments
 (0)