@astrojs/mdx 0.0.3 → 0.2.0

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 f5690bf7ad31b884
2
- @astrojs/mdx:build: 
3
- @astrojs/mdx:build: > @astrojs/mdx@0.0.3 build /home/runner/work/astro/astro/packages/integrations/mdx
4
- @astrojs/mdx:build: > astro-scripts build "src/**/*.ts" && tsc
5
- @astrojs/mdx:build: 
1
+ @astrojs/mdx:build: cache hit, replaying output 345323bc7c261c68
2
+ @astrojs/mdx:build: 
3
+ @astrojs/mdx:build: > @astrojs/mdx@0.2.0 build /home/runner/work/astro/astro/packages/integrations/mdx
4
+ @astrojs/mdx:build: > astro-scripts build "src/**/*.ts" && tsc
5
+ @astrojs/mdx:build: 
package/CHANGELOG.md CHANGED
@@ -1,5 +1,23 @@
1
1
  # @astrojs/mdx
2
2
 
3
+ ## 0.2.0
4
+
5
+ ### Minor Changes
6
+
7
+ - [#3914](https://github.com/withastro/astro/pull/3914) [`b48767985`](https://github.com/withastro/astro/commit/b48767985359bd359df8071324952ea5f2bc0d86) Thanks [@ran-dall](https://github.com/ran-dall)! - Rollback supported `node@16` version. Minimum versions are now `node@14.20.0` or `node@16.14.0`.
8
+
9
+ ## 0.1.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#3885](https://github.com/withastro/astro/pull/3885) [`bf5d1cc1e`](https://github.com/withastro/astro/commit/bf5d1cc1e71da38a14658c615e9481f2145cc6e7) Thanks [@delucis](https://github.com/delucis)! - Integration README fixes
14
+
15
+ ## 0.1.0
16
+
17
+ ### Minor Changes
18
+
19
+ - [#3871](https://github.com/withastro/astro/pull/3871) [`1cc5b7890`](https://github.com/withastro/astro/commit/1cc5b78905633608e5b07ad291f916f54e67feb1) Thanks [@natemoo-re](https://github.com/natemoo-re)! - Update supported `node` versions. Minimum versions are now `node@14.20.0` or `node@16.16.0`.
20
+
3
21
  ## 0.0.3
4
22
 
5
23
  ### Patch Changes
package/README.md CHANGED
@@ -22,7 +22,6 @@ Check out [“What is MDX?”](https://mdxjs.com/docs/what-is-mdx/), a deep-dive
22
22
 
23
23
  <details>
24
24
  <summary>Quick Install</summary>
25
- <br/>
26
25
 
27
26
  The `astro add` command-line tool automates the installation for you. Run one of the following commands in a new terminal window. (If you aren't sure which package manager you're using, run the first command.) Then, follow the prompts, and type "y" in the terminal (meaning "yes") for each one.
28
27
 
@@ -42,17 +41,16 @@ Because this command is new, it might not properly set things up. If that happen
42
41
 
43
42
  <details>
44
43
  <summary>Manual Install</summary>
45
- <br/>
46
44
 
47
45
  First, install the `@astrojs/mdx` package using your package manager. If you're using npm or aren't sure, run this in the terminal:
48
46
 
49
- ```
47
+ ```sh
50
48
  npm install @astrojs/mdx
51
49
  ```
52
50
 
53
51
  Then, apply this integration to your `astro.config.*` file using the `integrations` property:
54
52
 
55
- __astro.config.mjs__
53
+ __`astro.config.mjs`__
56
54
 
57
55
  ```js
58
56
  import { defineConfig } from 'astro/config';
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.0.3",
4
+ "version": "0.2.0",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",
7
7
  "author": "withastro",
@@ -18,7 +18,7 @@
18
18
  "mdx"
19
19
  ],
20
20
  "bugs": "https://github.com/withastro/astro/issues",
21
- "homepage": "https://astro.build",
21
+ "homepage": "https://docs.astro.build/en/guides/integrations-guide/mdx/",
22
22
  "exports": {
23
23
  ".": "./dist/index.js",
24
24
  "./package.json": "./package.json"
@@ -30,14 +30,14 @@
30
30
  "@types/chai": "^4.3.1",
31
31
  "@types/mocha": "^9.1.1",
32
32
  "@types/yargs-parser": "^21.0.0",
33
- "astro": "1.0.0-beta.65",
33
+ "astro": "1.0.0-beta.70",
34
34
  "astro-scripts": "0.0.6",
35
35
  "chai": "^4.3.6",
36
36
  "mocha": "^9.2.2",
37
37
  "linkedom": "^0.14.12"
38
38
  },
39
39
  "engines": {
40
- "node": "^14.15.0 || >=16.0.0"
40
+ "node": "^14.20.0 || >=16.14.0"
41
41
  },
42
42
  "scripts": {
43
43
  "build": "astro-scripts build \"src/**/*.ts\" && tsc",