@astrojs/mdx 0.1.0 → 0.2.1
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.
- package/.turbo/turbo-build.log +5 -6
- package/CHANGELOG.md +18 -0
- package/README.md +2 -4
- package/package.json +4 -4
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,5 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
6
|
-
[36m@astrojs/mdx:build: [0m
|
|
1
|
+
[34m@astrojs/mdx:build: [0mcache hit, replaying output [2m2fda6b9b9d31f669[0m
|
|
2
|
+
[34m@astrojs/mdx:build: [0m
|
|
3
|
+
[34m@astrojs/mdx:build: [0m> @astrojs/mdx@0.2.1 build /home/runner/work/astro/astro/packages/integrations/mdx
|
|
4
|
+
[34m@astrojs/mdx:build: [0m> astro-scripts build "src/**/*.ts" && tsc
|
|
5
|
+
[34m@astrojs/mdx:build: [0m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @astrojs/mdx
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#3937](https://github.com/withastro/astro/pull/3937) [`31f9c0bf0`](https://github.com/withastro/astro/commit/31f9c0bf029ffa4b470e620f2c32e1370643e81e) Thanks [@delucis](https://github.com/delucis)! - Roll back supported Node engines
|
|
8
|
+
|
|
9
|
+
## 0.2.0
|
|
10
|
+
|
|
11
|
+
### Minor Changes
|
|
12
|
+
|
|
13
|
+
- [#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`.
|
|
14
|
+
|
|
15
|
+
## 0.1.1
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- [#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
|
|
20
|
+
|
|
3
21
|
## 0.1.0
|
|
4
22
|
|
|
5
23
|
### Minor 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
|
-
|
|
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.1
|
|
4
|
+
"version": "0.2.1",
|
|
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.
|
|
33
|
+
"astro": "1.0.0-beta.73",
|
|
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.
|
|
40
|
+
"node": "^14.18.0 || >=16.12.0"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|