@astrojs/mdx 0.0.3 → 0.1.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.
- package/.turbo/turbo-build.log +6 -5
- package/CHANGELOG.md +6 -0
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
[
|
|
2
|
-
[
|
|
3
|
-
[
|
|
4
|
-
[
|
|
5
|
-
[
|
|
1
|
+
[36m@astrojs/mdx:build: [0mcache hit, replaying output [2m75d013e787cdcbb3[0m
|
|
2
|
+
[36m@astrojs/mdx:build: [0m[43m[30m WARN [39m[49m Unsupported engine: wanted: {"node":"^14.20.0 || >=16.16.0"} (current: {"node":"v14.19.3","pnpm":"7.5.0"})
|
|
3
|
+
[36m@astrojs/mdx:build: [0m
|
|
4
|
+
[36m@astrojs/mdx:build: [0m> @astrojs/mdx@0.1.0 build /home/runner/work/astro/astro/packages/integrations/mdx
|
|
5
|
+
[36m@astrojs/mdx:build: [0m> astro-scripts build "src/**/*.ts" && tsc
|
|
6
|
+
[36m@astrojs/mdx:build: [0m
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @astrojs/mdx
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- [#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`.
|
|
8
|
+
|
|
3
9
|
## 0.0.3
|
|
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.0
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"types": "./dist/index.d.ts",
|
|
7
7
|
"author": "withastro",
|
|
@@ -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.66",
|
|
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.20.0 || >=16.16.0"
|
|
41
41
|
},
|
|
42
42
|
"scripts": {
|
|
43
43
|
"build": "astro-scripts build \"src/**/*.ts\" && tsc",
|