From 9a0ac354edd3942ac61ebe10a941f3e575aba34f Mon Sep 17 00:00:00 2001 From: Shubham Padia Date: Thu, 28 Aug 2025 06:04:11 +0000 Subject: [PATCH] starlight_help: Move @types/mdast away from dev dependencies. @types/mdast was in dev dependencies while it shouldn't have been, we move that away from dev dependencies and bump the version. We need the package when running the astro build step. --- pnpm-lock.yaml | 6 +++--- starlight_help/package.json | 2 +- version.py | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 62a81e7ac9..15c13fc308 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -533,6 +533,9 @@ importers: '@types/hast': specifier: ^3.0.4 version: 3.0.4 + '@types/mdast': + specifier: ^4.0.4 + version: 4.0.4 astro: specifier: ^5.1.2 version: 5.13.0(@types/node@22.17.1)(encoding@0.1.13)(jiti@1.21.7)(rollup@4.46.2)(terser@5.43.1)(typescript@5.9.2)(yaml@2.8.1) @@ -564,9 +567,6 @@ importers: specifier: ^22.1.0 version: 22.2.0 devDependencies: - '@types/mdast': - specifier: ^4.0.4 - version: 4.0.4 remark-cli: specifier: ^12.0.1 version: 12.0.1 diff --git a/starlight_help/package.json b/starlight_help/package.json index 3acdb0f99b..e0d33a4ebd 100644 --- a/starlight_help/package.json +++ b/starlight_help/package.json @@ -16,6 +16,7 @@ "@astrojs/starlight": "^0.35.1", "@iconify-json/fa": "^1.2.1", "@types/hast": "^3.0.4", + "@types/mdast": "^4.0.4", "astro": "^5.1.2", "hast-util-from-html": "^2.0.3", "hast-util-to-html": "^9.0.5", @@ -28,7 +29,6 @@ "unplugin-icons": "^22.1.0" }, "devDependencies": { - "@types/mdast": "^4.0.4", "remark-cli": "^12.0.1", "remark-frontmatter": "^5.0.0", "remark-lint-fenced-code-flag": "^4.2.0", diff --git a/version.py b/version.py index e8310160f4..fda149b6be 100644 --- a/version.py +++ b/version.py @@ -49,4 +49,4 @@ API_FEATURE_LEVEL = 425 # historical commits sharing the same major version, in which case a # minor version bump suffices. -PROVISION_VERSION = (342, 1) # bumped 2025-08-19 to add zstd +PROVISION_VERSION = (343, 0) # bumped 2025-08-28 to move @types/mdast away from dev dependencies.