From 0bcd7ad46f334aea07ca94eca8a68c6869ebcce3 Mon Sep 17 00:00:00 2001 From: Hexagon Date: Thu, 7 Mar 2024 00:02:47 +0000 Subject: [PATCH] Fix readme --- README.md | 9 ++++++++- deno.json | 3 ++- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 68e5821..7b3b9ad 100644 --- a/README.md +++ b/README.md @@ -7,7 +7,14 @@ This package provides a well defined, cross runtime, way to determine details ab Try it out at [jsfiddle.net/ux87tLz4/6/](https://jsfiddle.net/ux87tLz4/6/) ```javascript -import { CurrentArchitecture, CurrentOS, CurrentProduct, CurrentRuntime, CurrentVersion, Runtime } from "@cross/runtime"; +import { + CurrentArchitecture, + CurrentOS, + CurrentProduct, + CurrentRuntime, + CurrentVersion, + Runtime +} from "@cross/runtime"; console.log(`Runtime: ${CurrentRuntime}`); console.log(`OS: ${CurrentOS}`); diff --git a/deno.json b/deno.json index fb3f3cc..6fcb9ad 100644 --- a/deno.json +++ b/deno.json @@ -3,6 +3,7 @@ "version": "0.0.15", "exports": "./mod.ts", "fmt": { - "lineWidth": 200 + "lineWidth": 200, + "exclude": ["README.md"] } }