Commit aa7f6c62 authored by malkoG's avatar malkoG
Browse files

Update next14 example to use pnpm

parent 38fb0f08
Loading
Loading
Loading
Loading

examples/next14-app-router/.nvmrc

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
v20.17.0
+2 −4
Original line number Diff line number Diff line
@@ -12,15 +12,13 @@
2.  Install dependencies:

    ```sh
    # optional
    nvm use
    npm i
    pnpm i
    ```

3.  Start the server:

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

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

File deleted.

Preview size limit exceeded, changes collapsed.

+6 −7
Original line number Diff line number Diff line
@@ -9,22 +9,21 @@
    "lint": "next lint"
  },
  "dependencies": {
    "@fedify/fedify": "^1.2.7",
    "@logtape/logtape": "^0.8.0",
    "next": "15.0.0-canary.136",
    "@fedify/fedify": "workspace:",
    "@logtape/logtape": "catalog:",
    "next": "^14.0.0",
    "react": "19.0.0-rc-7771d3a7-20240827",
    "react-dom": "19.0.0-rc-7771d3a7-20240827",
    "x-forwarded-fetch": "^0.2.0"
  },
  "devDependencies": {
    "@types/node": "^20",
    "@types/node": "catalog:",
    "@types/react": "^18",
    "@types/react-dom": "^18",
    "eslint": "^8",
    "eslint-config-next": "15.0.0-canary.136",
    "postcss": "^8",
    "tailwindcss": "^3.4.1",
    "typescript": "^5"
  },
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
    "typescript": "catalog:"
  }
}