Skip to content

Commit 38e4778

Browse files
committed
fixed proj meta for lib publishing
1 parent 796e953 commit 38e4778

File tree

3 files changed

+30
-28
lines changed

3 files changed

+30
-28
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,10 @@
1313
- code format & code format settings for VS Code users
1414
- upgraded dependencies (`zod@^3.24.1`)
1515

16+
## Removed
17+
18+
- the file `jsr.json` is removed in favour of file `deno.jsonc`
19+
1620
## [0.12.2] - 2024-12-06
1721

1822
### Added

deno.jsonc

Lines changed: 26 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,16 @@
11
{
2+
"name": "@dklab/oak-routing-ctrl",
3+
"version": "0.13.0-alpha.1",
4+
"exports": {
5+
".": "./mod.ts",
6+
"./mod": "./mod.ts"
7+
},
8+
"tasks": {
9+
"pretty": "deno lint --ignore=docs && deno check . && deno fmt",
10+
"test": "deno test -RE",
11+
"check-doc": "deno check --doc .",
12+
"doc": "deno doc --html mod.ts"
13+
},
214
"imports": {
315
"@asteasolutions/zod-to-openapi": "npm:@asteasolutions/zod-to-openapi@^7.3.0",
416
"@oak/oak": "jsr:@oak/oak@^17.1.3",
@@ -8,17 +20,24 @@
820
"@std/testing": "jsr:@std/testing@^1.0.6",
921
"zod": "npm:zod@^3.24.1"
1022
},
11-
"tasks": {
12-
"pretty": "deno lint --ignore=docs && deno check . && deno fmt",
13-
"test": "deno test -RE",
14-
"check-doc": "deno check --doc .",
15-
"doc": "deno doc --html mod.ts"
16-
},
1723
"fmt": {
1824
"useTabs": false,
1925
"indentWidth": 2,
2026
"semiColons": true,
2127
"singleQuote": false,
2228
"proseWrap": "always"
23-
}
29+
},
30+
"exclude": [
31+
"./docs",
32+
"./test_utils",
33+
"**/*_test.ts",
34+
"cov_profile",
35+
"cov_profile.lcov",
36+
"dev_deps.ts",
37+
"**/__snapshots__",
38+
".github",
39+
".vscode",
40+
"./CONTRIBUTING.md",
41+
"./GOVERNANCE.md"
42+
]
2443
}

jsr.json

Lines changed: 0 additions & 21 deletions
This file was deleted.

0 commit comments

Comments
 (0)