Commit 38fb0f08 authored by malkoG's avatar malkoG
Browse files

Update next15 example to use pnpm

parent 074ff587
Loading
Loading
Loading
Loading

examples/next15-app-router/.nvmrc

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
v22.14.0
+0 −7
Original line number Diff line number Diff line
@@ -12,20 +12,13 @@
2.  Install dependencies:

    ```sh
    nvm use # optional

    # choose according to your taste
    npm i
    pnpm i
    bun i
    ```

3.  Start the server:

    ```sh
    npm run dev & npx @fedify/cli tunnel 3000
    pnpm dev && pnpx @fedify/cli tunnel 3000
    bun dev && bunx @fedify/cli tunnel 3000
    ```

4.  Open your browser tunneled URL and start interacting with the app.
+0 −901

File deleted.

Preview size limit exceeded, changes collapsed.

+6 −6
Original line number Diff line number Diff line
@@ -9,21 +9,21 @@
    "lint": "next lint"
  },
  "dependencies": {
    "@fedify/fedify": "^1.5.1",
    "@fedify/fedify": "workspace:",
    "next": "15.3.1",
    "react": "^19.0.0",
    "react-dom": "^19.0.0",
    "x-forwarded-fetch": "^0.2.0"
  },
  "devDependencies": {
    "typescript": "^5",
    "@types/node": "^20",
    "@eslint/eslintrc": "^3",
    "@tailwindcss/postcss": "^4",
    "@types/node": "catalog:",
    "@types/react": "^19",
    "@types/react-dom": "^19",
    "@tailwindcss/postcss": "^4",
    "tailwindcss": "^4",
    "eslint": "^9",
    "eslint-config-next": "15.3.1",
    "@eslint/eslintrc": "^3"
    "tailwindcss": "^4",
    "typescript": "catalog:"
  }
}