Skip to content

Update javascript-backend to js-backend and javascript-frontend to js-frontend #2096

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
44 changes: 22 additions & 22 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -852,28 +852,28 @@ The `<If />` component is used for conditional rendering. When the conditions ar

Available values for the `sdk` prop:

| SDK | Value |
| ---------------------- | --------------------- |
| Next.js | "nextjs" |
| React | "react" |
| Javascript | "javascript-frontend" |
| Chrome Extension | "chrome-extension" |
| Expo | "expo" |
| iOS | "ios" |
| Express | "expressjs" |
| Fastify | "fastify" |
| React Router | "react-router" |
| Remix | "remix" |
| Tanstack Start | "tanstack-start" |
| Go | "go" |
| Astro | "astro" |
| Nuxt | "nuxt" |
| Vue | "vue" |
| Ruby / Rails / Sinatra | "ruby" |
| Python | "python" |
| JS Backend SDK | "javascript-backend" |
| SDK Development | "sdk-development" |
| Community SDKs | "community-sdk" |
| SDK | Value |
| ---------------------- | ------------------ |
| Next.js | "nextjs" |
| React | "react" |
| Javascript | "js-frontend" |
| Chrome Extension | "chrome-extension" |
| Expo | "expo" |
| iOS | "ios" |
| Express | "expressjs" |
| Fastify | "fastify" |
| React Router | "react-router" |
| Remix | "remix" |
| Tanstack Start | "tanstack-start" |
| Go | "go" |
| Astro | "astro" |
| Nuxt | "nuxt" |
| Vue | "vue" |
| Ruby / Rails / Sinatra | "ruby" |
| Python | "python" |
| JS Backend SDK | "js-backend" |
| SDK Development | "sdk-development" |
| Community SDKs | "community-sdk" |

#### Examples

Expand Down
2 changes: 1 addition & 1 deletion docs/components/authentication/sign-in.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -214,7 +214,7 @@ The following example includes basic implementation of the `<SignIn />` componen
</Tab>
</Tabs>

<If sdk="javascript-frontend">
<If sdk="js-frontend">
## Usage with JavaScript

The following methods available on an instance of the [`Clerk`](/docs/references/javascript/clerk) class are used to render and control the `<SignIn />` component:
Expand Down
2 changes: 1 addition & 1 deletion docs/components/authentication/sign-up.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ The following example includes basic implementation of the `<SignUp />` componen
</Tab>
</Tabs>

<If sdk="javascript-frontend">
<If sdk="js-frontend">
## Usage with JavaScript

The following methods available on an instance of the [`Clerk`](/docs/references/javascript/clerk) class are used to render and control the `<SignUp />` component:
Expand Down
2 changes: 1 addition & 1 deletion docs/components/organization/organization-list.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,7 @@ The `<OrganizationList />` component accepts the following properties, all of wh
</Tab>
</Tabs>

<If sdk="javascript-frontend">
<If sdk="js-frontend">
## Usage with JavaScript

The following methods available on an instance of the [`Clerk`](/docs/references/javascript/clerk) class are used to render and control the `<OrganizationList />` component:
Expand Down
2 changes: 1 addition & 1 deletion docs/components/organization/organization-profile.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ The `<OrganizationProfile />` component accepts the following properties, all of
</Tab>
</Tabs>

<If sdk="javascript-frontend">
<If sdk="js-frontend">
## Usage with JavaScript

The following methods available on an instance of the [`Clerk`](/docs/references/javascript/clerk) class are used to render and control the `<OrganizationProfile />` component:
Expand Down
2 changes: 1 addition & 1 deletion docs/components/organization/organization-switcher.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ The `<OrganizationSwitcher />` component accepts the following properties, all o
</Tab>
</Tabs>

<If sdk="javascript-frontend">
<If sdk="js-frontend">
## Usage with JavaScript

The following methods available on an instance of the [`Clerk`](/docs/references/javascript/clerk) class are used to render and control the `<OrganizationSwitcher />` component:
Expand Down
2 changes: 1 addition & 1 deletion docs/components/user/user-button.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -271,7 +271,7 @@ In the following example, `<UserButton />` is mounted inside a header component,
</Tab>
</Tabs>

<If sdk="javascript-frontend">
<If sdk="js-frontend">
## Usage with JavaScript

The following methods available on an instance of the [`Clerk`](/docs/references/javascript/clerk) class are used to render and control the `<UserButton />` component:
Expand Down
4 changes: 2 additions & 2 deletions docs/manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@
{
"title": "JavaScript",
"hideTitle": true,
"sdk": ["javascript-frontend"],
"sdk": ["js-frontend"],
"items": [
[
{
Expand Down Expand Up @@ -873,7 +873,7 @@
{
"title": "JS Backend SDK",
"hideTitle": true,
"sdk": ["javascript-backend"],
"sdk": ["js-backend"],
"items": [
[
{
Expand Down
4 changes: 2 additions & 2 deletions docs/manifest.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@
"enum": [
"nextjs",
"react",
"javascript-frontend",
"js-frontend",
"chrome-extension",
"expo",
"ios",
Expand All @@ -180,7 +180,7 @@
"vue",
"ruby",
"python",
"javascript-backend",
"js-backend",
"sdk-development",
"community-sdk"
]
Expand Down