starlight_help: Move help-beta over to starlight_help.

We are starting the cutover process and starlight_help is the directory
we have agreed on to place our new help center project. We do not want
to use `starlight_help` as the URL for the project, but this commit
changes the url from `help-beta` to `starlight_help` temporarily since
we can only change URL once we get rid of the current help center
project. That will be done in a future commit.
This commit is contained in:
Shubham Padia
2025-08-06 11:05:27 +00:00
committed by Tim Abbott
parent fb49e5e420
commit 3e60b16ac1
33 changed files with 39 additions and 51 deletions

View File

@@ -18,12 +18,12 @@ def setup_node_modules(production: bool = DEFAULT_PRODUCTION) -> None:
except FileNotFoundError:
pass
# We need this check when switching between branches without `help-beta`
# package. `node_modules` will be removed when working on a non `help-beta`
# We need this check when switching between branches without `starlight_help`
# package. `node_modules` will be removed when working on a non `starlight_help`
# branch, but if `node_modules/.pnpm/lock.yaml` has not been updated by that
# branch, we will end up in a situation where we might not have `node_modules`
# even when we run the provision command.
if not os.path.exists("help-beta/node_modules"):
if not os.path.exists("starlight_help/node_modules"):
skip = False
if not skip: