Skip to content

Commit 63447a3

Browse files
authored
chore(repo): remove playground templates (#8533)
1 parent a233ddb commit 63447a3

205 files changed

Lines changed: 3 additions & 5332 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
---
2+
---

.cursor/rules/development.mdc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ Development Environment Setup
1414
Monorepo Development Workflow
1515
- Make changes in the relevant package under `/packages/`
1616
- Use `pnpm dev` to watch for changes and rebuild automatically
17-
- Test changes using playground applications in `/playground/`
1817
- Run specific package commands using pnpm workspace syntax: `pnpm --filter @clerk/nextjs build`
1918
- Use Turbo for efficient builds: `turbo build --filter=@clerk/nextjs`
2019

@@ -111,7 +110,6 @@ Release Process
111110
- Maintain detailed changelogs
112111

113112
Local Development Tips
114-
- Use playground applications to test changes quickly
115113
- Set up multiple test environments for different scenarios
116114
- Use pkglab for local npm registry testing (`pkglab pub` to publish, `pkglab add` to install)
117115
- Leverage hot reloading for faster development cycles

.cursor/rules/global.mdc

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,6 @@ Clerk JavaScript SDK Monorepo
2222

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

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

4039
- Make changes in relevant package under packages/
41-
- Use playground apps for testing changes
4240
- Follow established testing and documentation requirements
4341
- Use Changesets for version management and releases
4442
- If you are provided a commit SHA, always read the commit message and description for extra context.

.cursor/rules/monorepo.mdc

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ Directory Structure
2727

2828
- `packages/` - All publishable packages
2929
- `integration/` - End-to-end tests and integration templates
30-
- `playground/` - Development and testing applications
3130
- `docs/` - Documentation and contribution guides
3231
- `scripts/` - Build and automation scripts
3332
- `tools/` - Internal development tools

.dockerignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,3 @@ npm-debug.log
33
.next
44
.dev.lock
55
*.md
6-
playground

.github/labeler.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,10 +80,6 @@ vue:
8080
- changed-files:
8181
- any-glob-to-any-file: packages/vue/**
8282

83-
playground:
84-
- changed-files:
85-
- any-glob-to-any-file: playground/**
86-
8783
actions:
8884
- changed-files:
8985
- any-glob-to-any-file: .github/workflows/**

.gitignore

Lines changed: 1 addition & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@ out-tsc
77
out
88
**/dist/*
99
**/build/*
10-
!playground/browser-extension-js/build/manifest.json
11-
!playground/browser-extension-js/build/popup.html
12-
!playground/browser-extension-js/build/popup.css
1310
packages/*/dist/**
1411
**/.pnpm-store/**
1512

@@ -64,17 +61,10 @@ lerna-debug.log
6461
.next
6562
.dev.vars
6663
.env.local
67-
playground/*/build
68-
!playground/browser-extension-js/build
69-
playground/*/public/build
70-
playground/*/.cache
71-
playground/custom
7264

73-
# Examples & Playground apps dependency locks
65+
# Examples apps dependency locks
7466
packages/*/examples/*/package-lock.json
7567
packages/*/examples/*/yarn.lock
76-
playground/*/package-lock.json
77-
playground/*/yarn.lock
7868
/test-results/
7969
/playwright-report/
8070
/playwright/.cache/

.prettierignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ dist
1717
node_modules
1818
package-lock.json
1919
pnpm-lock.yaml
20-
playground
2120
packages/backend/tests/**/*.js
2221
packages/clerk-js/src/core/resources/internal.ts
2322
packages/clerk-js/src/core/resources/index.ts

.vscode/launch.json

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,27 +1,6 @@
11
{
22
"version": "0.2.0",
33
"configurations": [
4-
{
5-
"name": "playground/nextjs: debug server",
6-
"type": "node-terminal",
7-
"request": "launch",
8-
"command": "pnpm dev",
9-
"cwd": "${workspaceFolder}/playground/nextjs"
10-
},
11-
{
12-
"name": "playground/nextjs12: debug server",
13-
"type": "node-terminal",
14-
"request": "launch",
15-
"command": "pnpm dev",
16-
"cwd": "${workspaceFolder}/playground/nextjs12"
17-
},
18-
{
19-
"name": "playground/express: debug server",
20-
"type": "node-terminal",
21-
"request": "launch",
22-
"command": "npm start",
23-
"cwd": "${workspaceFolder}/playground/express"
24-
},
254
{
265
"name": "Debug Vitest",
276
"type": "node",

eslint.config.mjs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,6 @@ export default tseslint.config([
267267
'commitlint.config.ts',
268268
'packages/*/dist/**',
269269
'packages/*/examples',
270-
'playground/*',
271270
'pnpm-lock.json',
272271
'eslint.config.mjs',
273272
'typedoc.config.mjs',

0 commit comments

Comments
 (0)