From d61ef19ecf3fb45bc015cce2b6dc51cfa875a347 Mon Sep 17 00:00:00 2001 From: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com> Date: Fri, 29 Jul 2022 22:06:57 -0700 Subject: [PATCH] Update bun-framework-next for Next 12.2 --- packages/bun-framework-next/README.md | 9 +++++---- packages/bun-framework-next/package.json | 6 +++++- 2 files changed, 10 insertions(+), 5 deletions(-) diff --git a/packages/bun-framework-next/README.md b/packages/bun-framework-next/README.md index 557fe44825..4df8999d1a 100644 --- a/packages/bun-framework-next/README.md +++ b/packages/bun-framework-next/README.md @@ -1,6 +1,6 @@ # bun-framework-next -This package lets you use Next.js 12 with bun. This readme assumes you already installed bun. +This package lets you use Next.js 12.2 with bun. This readme assumes you already installed bun. To start a new project: @@ -11,8 +11,9 @@ bun create next --open To use Next.js 12 with an existing project: ```bash -npm install bun-framework-next -bun bun --use next +bun add bun-framework-next +echo "framework = 'next'" > bunfig.toml +bun bun ``` Launch the development server: @@ -21,4 +22,4 @@ Launch the development server: bun dev ``` -Open http://localhost:3000 with your browser to see the result. \ No newline at end of file +Open http://localhost:3000 with your browser to see the result. diff --git a/packages/bun-framework-next/package.json b/packages/bun-framework-next/package.json index 5b7576e256..a62f80d536 100644 --- a/packages/bun-framework-next/package.json +++ b/packages/bun-framework-next/package.json @@ -2,12 +2,16 @@ "name": "bun-framework-next", "version": "12.2.3", "main": "empty.js", + "repository": "https://github.com/oven-sh/bun", "module": "empty.js", "description": "bun compatibility layer for Next.js >= v12.2.3", + "homepage": "https://bun.sh", + "bugs": { + "url": "https://github.com/oven-sh/bun/issues" + }, "scripts": { "check": "tsc --noEmit" }, - "author": "", "license": "MIT", "dependencies": { "react-is": "^17.0.2"