diff options
author | 2024-06-14 06:41:26 +0200 | |
---|---|---|
committer | 2024-06-14 12:41:26 +0800 | |
commit | 1b42229f51e7d16f7b5e70318f08c254a6ded038 (patch) | |
tree | 09e19c32a528f263c0ece90ac99e7c25c976936d | |
parent | a6df7e877f5e485b7f86dd026547e6f58a189edc (diff) | |
download | astro-1b42229f51e7d16f7b5e70318f08c254a6ded038.tar.gz astro-1b42229f51e7d16f7b5e70318f08c254a6ded038.tar.zst astro-1b42229f51e7d16f7b5e70318f08c254a6ded038.zip |
fix(markdown-remark): mark prism package as an internal dependency (#11250)
-rw-r--r-- | packages/markdown/remark/package.json | 2 | ||||
-rw-r--r-- | pnpm-lock.yaml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/packages/markdown/remark/package.json b/packages/markdown/remark/package.json index a1e3639ea..d2b4f5af6 100644 --- a/packages/markdown/remark/package.json +++ b/packages/markdown/remark/package.json @@ -34,7 +34,7 @@ "test": "astro-scripts test \"test/**/*.test.js\"" }, "dependencies": { - "@astrojs/prism": "^3.1.0", + "@astrojs/prism": "workspace:*", "github-slugger": "^2.0.0", "hast-util-from-html": "^2.0.1", "hast-util-to-text": "^4.0.2", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index fea9345a6..ae9663178 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -5608,7 +5608,7 @@ importers: packages/markdown/remark: dependencies: '@astrojs/prism': - specifier: ^3.1.0 + specifier: workspace:* version: link:../../astro-prism github-slugger: specifier: ^2.0.0 |