@astrojs/mdx 0.11.2 → 0.11.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.
@@ -1,5 +1,5 @@
1
- @astrojs/mdx:build: cache hit, replaying output efbc0a3c2d5779f7
1
+ @astrojs/mdx:build: cache hit, replaying output 64be6583f3d92349
2
2
  @astrojs/mdx:build: 
3
- @astrojs/mdx:build: > @astrojs/mdx@0.11.2 build /home/runner/work/astro/astro/packages/integrations/mdx
3
+ @astrojs/mdx:build: > @astrojs/mdx@0.11.3 build /home/runner/work/astro/astro/packages/integrations/mdx
4
4
  @astrojs/mdx:build: > astro-scripts build "src/**/*.ts" && tsc
5
5
  @astrojs/mdx:build: 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @astrojs/mdx
2
2
 
3
+ ## 0.11.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#4842](https://github.com/withastro/astro/pull/4842) [`812658ad2`](https://github.com/withastro/astro/commit/812658ad2ab3732a99e35c4fd903e302e723db46) Thanks [@bluwy](https://github.com/bluwy)! - Add missing dependencies, support strict dependency installation (e.g. pnpm)
8
+
3
9
  ## 0.11.2
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@astrojs/mdx",
3
3
  "description": "Use MDX within Astro",
4
- "version": "0.11.2",
4
+ "version": "0.11.3",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "author": "withastro",
@@ -43,17 +43,21 @@
43
43
  "devDependencies": {
44
44
  "@types/chai": "^4.3.1",
45
45
  "@types/estree": "^1.0.0",
46
+ "@types/github-slugger": "^1.3.0",
46
47
  "@types/mocha": "^9.1.1",
47
48
  "@types/yargs-parser": "^21.0.0",
48
- "astro": "1.3.1",
49
+ "astro": "1.4.0",
49
50
  "astro-scripts": "0.0.8",
50
51
  "chai": "^4.3.6",
52
+ "cheerio": "^1.0.0-rc.11",
51
53
  "linkedom": "^0.14.12",
54
+ "mdast-util-mdx": "^2.0.0",
52
55
  "mdast-util-to-string": "^3.1.0",
53
56
  "mocha": "^9.2.2",
54
57
  "reading-time": "^1.5.0",
55
58
  "remark-shiki-twoslash": "^3.1.0",
56
- "remark-toc": "^8.0.1"
59
+ "remark-toc": "^8.0.1",
60
+ "vite": "^3.0.0"
57
61
  },
58
62
  "engines": {
59
63
  "node": "^14.18.0 || >=16.12.0"
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "@test/mdx-namespace",
3
3
  "dependencies": {
4
- "astro": "workspace:*",
5
4
  "@astrojs/mdx": "workspace:*",
6
- "@astrojs/react": "workspace:*"
5
+ "@astrojs/react": "workspace:*",
6
+ "astro": "workspace:*",
7
+ "react": "^18.2.0",
8
+ "react-dom": "^18.1.0"
7
9
  }
8
10
  }
@@ -1,7 +1,9 @@
1
1
  {
2
2
  "name": "@test/mdx-page",
3
3
  "dependencies": {
4
+ "@astrojs/mdx": "workspace:*",
4
5
  "astro": "workspace:*",
5
- "@astrojs/mdx": "workspace:*"
6
+ "react": "^18.2.0",
7
+ "react-dom": "^18.2.0"
6
8
  }
7
9
  }
@@ -1,8 +1,10 @@
1
1
  {
2
2
  "name": "@test/mdx-plus-react",
3
3
  "dependencies": {
4
- "astro": "workspace:*",
5
4
  "@astrojs/mdx": "workspace:*",
6
- "@astrojs/react": "workspace:*"
5
+ "@astrojs/react": "workspace:*",
6
+ "astro": "workspace:*",
7
+ "react": "^18.2.0",
8
+ "react-dom": "^18.2.0"
7
9
  }
8
10
  }