diff options
author | 2024-04-01 23:39:29 +0800 | |
---|---|---|
committer | 2024-04-01 23:39:29 +0800 | |
commit | da2fb875fc58b65a21d37a3d29f570fa20b5219c (patch) | |
tree | 654c2ca9ffdeef4bd71db7712e0f34578b428755 | |
parent | 27e2c24647f3bc14764ee4cb301fb27566ace605 (diff) | |
download | astro-da2fb875fc58b65a21d37a3d29f570fa20b5219c.tar.gz astro-da2fb875fc58b65a21d37a3d29f570fa20b5219c.tar.zst astro-da2fb875fc58b65a21d37a3d29f570fa20b5219c.zip |
Make `@astrojs/markdown-remark` a dep in `@astrojs/markdoc` (#10632)
-rw-r--r-- | .changeset/selfish-spies-end.md | 5 | ||||
-rw-r--r-- | packages/integrations/markdoc/package.json | 2 | ||||
-rw-r--r-- | pnpm-lock.yaml | 6 |
3 files changed, 9 insertions, 4 deletions
diff --git a/.changeset/selfish-spies-end.md b/.changeset/selfish-spies-end.md new file mode 100644 index 000000000..d097bae53 --- /dev/null +++ b/.changeset/selfish-spies-end.md @@ -0,0 +1,5 @@ +--- +"@astrojs/markdoc": patch +--- + +Moves `@astrojs/markdown-remark` as a dependency diff --git a/packages/integrations/markdoc/package.json b/packages/integrations/markdoc/package.json index 2d09cfe16..d0009acf9 100644 --- a/packages/integrations/markdoc/package.json +++ b/packages/integrations/markdoc/package.json @@ -63,6 +63,7 @@ }, "dependencies": { "@astrojs/internal-helpers": "workspace:*", + "@astrojs/markdown-remark": "workspace:*", "@astrojs/prism": "workspace:*", "@markdoc/markdoc": "^0.3.5", "esbuild": "^0.19.6", @@ -76,7 +77,6 @@ "astro": "^3.0.0 || ^4.0.0" }, "devDependencies": { - "@astrojs/markdown-remark": "workspace:*", "@types/html-escaper": "^3.0.2", "@types/markdown-it": "^13.0.6", "astro": "workspace:*", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 15073c2e5..a3dea6e87 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -4136,6 +4136,9 @@ importers: '@astrojs/internal-helpers': specifier: workspace:* version: link:../../internal-helpers + '@astrojs/markdown-remark': + specifier: workspace:* + version: link:../../markdown/remark '@astrojs/prism': specifier: workspace:* version: link:../../astro-prism @@ -4161,9 +4164,6 @@ importers: specifier: ^3.22.4 version: 3.22.4 devDependencies: - '@astrojs/markdown-remark': - specifier: workspace:* - version: link:../../markdown/remark '@types/html-escaper': specifier: ^3.0.2 version: 3.0.2 |