mirror of
https://github.com/zulip/zulip.git
synced 2026-06-30 21:11:04 +08:00
Fixes #31252. One of our major use cases for file imports is to have bullet points as partials to import at different places in the project. But when importing the file with Astro, it creates its own lists. So we merge lists together if they have nothing but whitespace between them. There were some talks to use a component called FlattenList that would flatten the list inside it, but that would also flatten lists that were nested on purpose. This approach while feeling a bit hacky would not flatten nested lists.
23 lines
503 B
JSON
23 lines
503 B
JSON
{
|
|
"name": "help-beta",
|
|
"type": "module",
|
|
"version": "0.0.1",
|
|
"scripts": {
|
|
"dev": "astro dev",
|
|
"start": "astro dev",
|
|
"build": "astro check && astro build",
|
|
"preview": "astro preview",
|
|
"astro": "astro"
|
|
},
|
|
"dependencies": {
|
|
"@astrojs/check": "^0.9.3",
|
|
"@astrojs/starlight": "^0.33.0",
|
|
"@types/hast": "^3.0.4",
|
|
"astro": "^5.1.2",
|
|
"hast-util-from-html": "^2.0.3",
|
|
"hast-util-to-html": "^9.0.5",
|
|
"sharp": "^0.34.1",
|
|
"typescript": "^5.4.5"
|
|
}
|
|
}
|