Skip to content

Commit

Permalink
Fix fmt. Add tasks
Browse files Browse the repository at this point in the history
  • Loading branch information
Hexagon committed Mar 26, 2024
1 parent 31bab61 commit 4f8066c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@ This library provides a simple, cross-platform mechanism for retrieving the path
Bun and Node.js. It's designed for flexibility and ease of use, ensuring your applications can locate critical
directories regardless of the operating system or runtime environment.

Part of the @cross suite - check out our growing collection of cross-runtime tools at [github.com/cross-org](https://github.com/cross-org).
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
9 changes: 7 additions & 2 deletions deno.jsonc
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
"exports": "./mod.ts",

"tasks": {
"check-deps": "deno run -A jsr:@check/deps",
"check": "deno fmt --check && deno lint && deno check mod.ts && deno task test && deno task check-deps --slim",
"check-deps": "deno run -A jsr:@check/deps --ignore-unused",
"test": "echo \"No tests yet\"",
"publish-dry": "deno publish --dry-run"
},
"publish": {
"exclude": [".github", "*.test.ts"]
},
"lock": true,
"fmt": {
"lineWidth": 120,
Expand All @@ -16,6 +21,6 @@
"@cross/deepmerge": "jsr:@cross/deepmerge@^1.0.0",
"@cross/env": "jsr:@cross/env@^1.0.0",
"@cross/runtime": "jsr:@cross/runtime@^1.0.0",
"@cross/utils": "jsr:@cross/utils@^0.7.0"
"@cross/utils": "jsr:@cross/utils@^0.8.2"
}
}

0 comments on commit 4f8066c

Please sign in to comment.