Skip to content
Open
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
2 changes: 2 additions & 0 deletions .changeset/remove-playground-templates.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
---
---
2 changes: 0 additions & 2 deletions .cursor/rules/development.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,6 @@ Development Environment Setup
Monorepo Development Workflow
- Make changes in the relevant package under `/packages/`
- Use `pnpm dev` to watch for changes and rebuild automatically
- Test changes using playground applications in `/playground/`
- Run specific package commands using pnpm workspace syntax: `pnpm --filter @clerk/nextjs build`
- Use Turbo for efficient builds: `turbo build --filter=@clerk/nextjs`

Expand Down Expand Up @@ -111,7 +110,6 @@ Release Process
- Maintain detailed changelogs

Local Development Tips
- Use playground applications to test changes quickly
- Set up multiple test environments for different scenarios
- Use pkglab for local npm registry testing (`pkglab pub` to publish, `pkglab add` to install)
- Leverage hot reloading for faster development cycles
Expand Down
2 changes: 0 additions & 2 deletions .cursor/rules/global.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@ Clerk JavaScript SDK Monorepo

- `packages/` - All publishable packages (@clerk/\*)
- `integration/` - Framework integration templates and E2E tests
- `playground/` - Development and testing applications
- `scripts/` - Build automation and utilities
- `.cursor/rules/` - Additional rule files for specific domains

Expand All @@ -38,7 +37,6 @@ Clerk JavaScript SDK Monorepo
5. Development Workflow

- Make changes in relevant package under packages/
- Use playground apps for testing changes
- Follow established testing and documentation requirements
- Use Changesets for version management and releases
- If you are provided a commit SHA, always read the commit message and description for extra context.
1 change: 0 additions & 1 deletion .cursor/rules/monorepo.mdc
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,6 @@ Directory Structure

- `packages/` - All publishable packages
- `integration/` - End-to-end tests and integration templates
- `playground/` - Development and testing applications
- `docs/` - Documentation and contribution guides
- `scripts/` - Build and automation scripts
- `tools/` - Internal development tools
Expand Down
1 change: 0 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,3 @@ npm-debug.log
.next
.dev.lock
*.md
playground
4 changes: 0 additions & 4 deletions .github/labeler.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,6 @@ vue:
- changed-files:
- any-glob-to-any-file: packages/vue/**

playground:
- changed-files:
- any-glob-to-any-file: playground/**

actions:
- changed-files:
- any-glob-to-any-file: .github/workflows/**
Expand Down
12 changes: 1 addition & 11 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ out-tsc
out
**/dist/*
**/build/*
!playground/browser-extension-js/build/manifest.json
!playground/browser-extension-js/build/popup.html
!playground/browser-extension-js/build/popup.css
packages/*/dist/**
**/.pnpm-store/**

Expand Down Expand Up @@ -64,17 +61,10 @@ lerna-debug.log
.next
.dev.vars
.env.local
playground/*/build
!playground/browser-extension-js/build
playground/*/public/build
playground/*/.cache
playground/custom

# Examples & Playground apps dependency locks
# Examples apps dependency locks
packages/*/examples/*/package-lock.json
packages/*/examples/*/yarn.lock
playground/*/package-lock.json
playground/*/yarn.lock
/test-results/
/playwright-report/
/playwright/.cache/
Expand Down
1 change: 0 additions & 1 deletion .prettierignore
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@ dist
node_modules
package-lock.json
pnpm-lock.yaml
playground
packages/backend/tests/**/*.js
packages/clerk-js/src/core/resources/internal.ts
packages/clerk-js/src/core/resources/index.ts
Expand Down
21 changes: 0 additions & 21 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,6 @@
{
"version": "0.2.0",
"configurations": [
{
"name": "playground/nextjs: debug server",
"type": "node-terminal",
"request": "launch",
"command": "pnpm dev",
"cwd": "${workspaceFolder}/playground/nextjs"
},
{
"name": "playground/nextjs12: debug server",
"type": "node-terminal",
"request": "launch",
"command": "pnpm dev",
"cwd": "${workspaceFolder}/playground/nextjs12"
},
{
"name": "playground/express: debug server",
"type": "node-terminal",
"request": "launch",
"command": "npm start",
"cwd": "${workspaceFolder}/playground/express"
},
{
"name": "Debug Vitest",
"type": "node",
Expand Down
1 change: 0 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,6 @@ export default tseslint.config([
'commitlint.config.ts',
'packages/*/dist/**',
'packages/*/examples',
'playground/*',
'pnpm-lock.json',
'eslint.config.mjs',
'typedoc.config.mjs',
Expand Down
38 changes: 0 additions & 38 deletions playground/app-router/.gitignore

This file was deleted.

4 changes: 0 additions & 4 deletions playground/app-router/.vscode/settings.json

This file was deleted.

36 changes: 0 additions & 36 deletions playground/app-router/README.md

This file was deleted.

13 changes: 0 additions & 13 deletions playground/app-router/next.config.js

This file was deleted.

26 changes: 0 additions & 26 deletions playground/app-router/package.json

This file was deleted.

1 change: 0 additions & 1 deletion playground/app-router/public/next.svg

This file was deleted.

1 change: 0 additions & 1 deletion playground/app-router/public/vercel.svg

This file was deleted.

22 changes: 0 additions & 22 deletions playground/app-router/src/app/action/page.tsx

This file was deleted.

3 changes: 0 additions & 3 deletions playground/app-router/src/app/api/hello/route.ts

This file was deleted.

12 changes: 0 additions & 12 deletions playground/app-router/src/app/client/page.tsx

This file was deleted.

Binary file removed playground/app-router/src/app/favicon.ico
Binary file not shown.
77 changes: 0 additions & 77 deletions playground/app-router/src/app/globals.css

This file was deleted.

Loading
Loading