Skip to content

Commit

Permalink
Fix fmt. Add check+check+deps task. Excklude stuff on publish. Update…
Browse files Browse the repository at this point in the history
… deps.
  • Loading branch information
Hexagon committed Mar 26, 2024
1 parent 396ccb5 commit 481cad2
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
[![JSR Score](https://jsr.io/badges/@cross/env/score?v=0.2.4)](https://jsr.io/@cross/env/score)

This library provides a consistent and simple interface for managing environment variables across multiple runtimes,
making it ideal for cross-platform development.
Part of the @cross suite - check out our growing collection of cross-runtime tools at [github.com/cross-org](https://github.com/cross-org).
making it ideal for cross-platform development. Part of the @cross suite - check out our growing collection of
cross-runtime tools at [github.com/cross-org](https://github.com/cross-org).

## Features

Expand Down
10 changes: 7 additions & 3 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -5,20 +5,24 @@
".": "./mod.ts",
"./load": "./load.ts"
},

"tasks": {
"check": "deno fmt --check && deno lint && deno check mod.ts && deno doc --lint mod.ts && deno task test && deno task check-deps --slim",
"test": "deno test --allow-env --allow-read",
"check-deps": "deno run -A jsr:@check/deps --ignore-unused",
"publish-dry": "deno publish --dry-run"
},
"lock": false,
"fmt": {
"lineWidth": 120,
"indentWidth": 4
},
"publish": {
"exclude": [".github", "*.test.ts"]
},
"imports": {
"@cross/deepmerge": "jsr:@cross/deepmerge@^1.0.0",
"@cross/runtime": "jsr:@cross/runtime@^1.0.0",
"@cross/test": "jsr:@cross/test@^0.0.8",
"@std/assert": "jsr:@std/assert@^0.219.1"
"@cross/test": "jsr:@cross/test@^0.0.9",
"@std/assert": "jsr:@std/assert@^0.220.1"
}
}

0 comments on commit 481cad2

Please sign in to comment.