@astrojs/mdx 1.1.2 → 1.1.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3 -9
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -56,15 +56,9 @@ Then, apply this integration to your `astro.config.*` file using the `integratio
56
56
 
57
57
  ### Editor Integration
58
58
 
59
- [VS Code](https://code.visualstudio.com/) supports Markdown by default. However, for MDX editor support, you may wish to add the following setting in your VSCode config. This ensures authoring MDX files provides a Markdown-like editor experience.
60
-
61
- ```json title=".vscode/settings.json"
62
- {
63
- "files.associations": {
64
- "*.mdx": "markdown"
65
- }
66
- }
67
- ```
59
+ For editor support in [VS Code](https://code.visualstudio.com/), install the [official MDX extension](https://marketplace.visualstudio.com/items?itemName=unifiedjs.vscode-mdx).
60
+
61
+ For other editors, use the [MDX language server](https://github.com/mdx-js/mdx-analyzer/tree/main/packages/language-server).
68
62
 
69
63
  ## Usage
70
64
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@astrojs/mdx",
3
3
  "description": "Add support for MDX pages in your Astro site",
4
- "version": "1.1.2",
4
+ "version": "1.1.3",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "author": "withastro",
@@ -44,7 +44,7 @@
44
44
  "@astrojs/markdown-remark": "3.3.0"
45
45
  },
46
46
  "peerDependencies": {
47
- "astro": "^3.3.0"
47
+ "astro": "^3.3.4"
48
48
  },
49
49
  "devDependencies": {
50
50
  "@types/chai": "^4.3.5",
@@ -67,7 +67,7 @@
67
67
  "remark-toc": "^8.0.1",
68
68
  "unified": "^10.1.2",
69
69
  "vite": "^4.4.9",
70
- "astro": "3.3.0",
70
+ "astro": "3.3.4",
71
71
  "astro-scripts": "0.0.14"
72
72
  },
73
73
  "engines": {