this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

labeler starter kit

alice 5fc72bdf 70d5ec0a

+15 -7
bun.lockb

This is a binary file and will not be displayed.

+7 -7
package.json
··· 17 17 "@vercel/functions": "^1.5.0", 18 18 "autoprefixer": "^10.4.20", 19 19 "bookmarkleter": "^1.1.0", 20 - "eslint": "^9.14.0", 21 - "eslint-config-next": "15.0.2", 22 - "next": "15.0.2", 20 + "eslint": "^9.15.0", 21 + "eslint-config-next": "15.0.3", 22 + "next": "15.0.3", 23 23 "patch-package": "^8.0.0", 24 - "postcss": "^8.4.47", 24 + "postcss": "^8.4.49", 25 25 "prism-react-renderer": "^2.4.0", 26 - "react": "19.0.0-rc-02c0e824-20241028", 27 - "react-dom": "19.0.0-rc-02c0e824-20241028", 28 - "tailwindcss": "^3.4.14", 26 + "react": "19.0.0-rc-66855b96-20241106", 27 + "react-dom": "19.0.0-rc-66855b96-20241106", 28 + "tailwindcss": "^3.4.15", 29 29 "typescript": "^5.6.3" 30 30 }, 31 31 "overrides": {
+8
src/app/labeler-starter-kit/route.ts
··· 1 + export async function GET(request: Request) { 2 + return new Response(null, { 3 + status: 302, 4 + headers: { 5 + 'Location': 'https://github.com/aliceisjustplaying/labeler-starter-kit-bsky', 6 + }, 7 + }); 8 + }