From e044ec66d32499af0487e2f40eb95c752a80286e Mon Sep 17 00:00:00 2001 From: Ben Winding Date: Mon, 25 Nov 2019 23:11:06 +1030 Subject: [PATCH] Update runtime.md Fix the invalid JSON, makes it easier for people to copy/paste --- docs/guide/runtime.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/guide/runtime.md b/docs/guide/runtime.md index 23b0dc5a..321ce215 100644 --- a/docs/guide/runtime.md +++ b/docs/guide/runtime.md @@ -29,11 +29,11 @@ All you need to do is update your **package.json** file: "start": "nuxt-ts start" }, "dependencies": { - "@nuxt/typescript-runtime", - "nuxt" + "@nuxt/typescript-runtime": "latest", + "nuxt": "latest" }, "devDependencies": { - "@nuxt/typescript-build" + "@nuxt/typescript-build": "latest" } ```