Skip to content

Commit 9ea0d78

Browse files
committed
chore(deno): Exclude docs/, move most exclusions to top level
1 parent 58c8d7b commit 9ea0d78

File tree

1 file changed

+14
-8
lines changed

1 file changed

+14
-8
lines changed

deno.json

Lines changed: 14 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -9,17 +9,21 @@
99
"./options": "./src/setup/options.ts",
1010
"./issues": "./src/issues/datasetIssues.ts"
1111
},
12+
"exclude": [
13+
"docs/",
14+
"tools/",
15+
"web/",
16+
".*",
17+
"CITATION.cff",
18+
"Dockerfile",
19+
"build.ts",
20+
"local-run"
21+
],
1222
"publish": {
1323
"exclude": [
1424
"**/tests/",
15-
"tools/",
16-
"web/",
17-
".*",
1825
"**/*.test.ts",
19-
"Dockerfile",
20-
"build.ts",
21-
"deno.lock",
22-
"local-run"
26+
"deno.lock"
2327
]
2428
},
2529
"imports": {
@@ -47,6 +51,8 @@
4751
"semiColons": false,
4852
"singleQuote": true,
4953
"proseWrap": "preserve",
50-
"include": ["src/"]
54+
"include": [
55+
"src/"
56+
]
5157
}
5258
}

0 commit comments

Comments
 (0)