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"] } }