Skip to content

Commit

Permalink
fixed proj meta for lib publishing
Browse files Browse the repository at this point in the history
  • Loading branch information
Thesephi committed Dec 15, 2024
1 parent 796e953 commit 38e4778
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 28 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
- code format & code format settings for VS Code users
- upgraded dependencies (`zod@^3.24.1`)

## Removed

- the file `jsr.json` is removed in favour of file `deno.jsonc`

## [0.12.2] - 2024-12-06

### Added
Expand Down
33 changes: 26 additions & 7 deletions deno.jsonc
Original file line number Diff line number Diff line change
@@ -1,4 +1,16 @@
{
"name": "@dklab/oak-routing-ctrl",
"version": "0.13.0-alpha.1",
"exports": {
".": "./mod.ts",
"./mod": "./mod.ts"
},
"tasks": {
"pretty": "deno lint --ignore=docs && deno check . && deno fmt",
"test": "deno test -RE",
"check-doc": "deno check --doc .",
"doc": "deno doc --html mod.ts"
},
"imports": {
"@asteasolutions/zod-to-openapi": "npm:@asteasolutions/zod-to-openapi@^7.3.0",
"@oak/oak": "jsr:@oak/oak@^17.1.3",
Expand All @@ -8,17 +20,24 @@
"@std/testing": "jsr:@std/testing@^1.0.6",
"zod": "npm:zod@^3.24.1"
},
"tasks": {
"pretty": "deno lint --ignore=docs && deno check . && deno fmt",
"test": "deno test -RE",
"check-doc": "deno check --doc .",
"doc": "deno doc --html mod.ts"
},
"fmt": {
"useTabs": false,
"indentWidth": 2,
"semiColons": true,
"singleQuote": false,
"proseWrap": "always"
}
},
"exclude": [
"./docs",
"./test_utils",
"**/*_test.ts",
"cov_profile",
"cov_profile.lcov",
"dev_deps.ts",
"**/__snapshots__",
".github",
".vscode",
"./CONTRIBUTING.md",
"./GOVERNANCE.md"
]
}
21 changes: 0 additions & 21 deletions jsr.json

This file was deleted.

0 comments on commit 38e4778

Please sign in to comment.