Skip to content

Commit d7b9043

Browse files
committed
fix: ignore testing for publish
1 parent 7eb7cee commit d7b9043

2 files changed

Lines changed: 6 additions & 7 deletions

File tree

deno.json

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,17 +21,13 @@
2121
"tasks": {
2222
"test": "deno test --allow-read --allow-env --allow-run --allow-net"
2323
},
24-
"test": {
25-
"include": [
26-
"./testing/**/*.test.ts"
27-
]
28-
},
2924
"include": [
3025
"LICENSE",
3126
"README.md",
3227
"deno.json"
3328
],
3429
"exclude": [
35-
"./examples/*"
30+
"./examples/*",
31+
"./testing/*"
3632
]
3733
}

platforms/deno/deno.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@
1111
"@std/media-types": "jsr:@std/media-types@^1.1.0",
1212
"@std/path": "jsr:@std/path@^1.1.4",
1313
"esbuild": "npm:esbuild@^0.27.3"
14-
}
14+
},
15+
"ignore": [
16+
"./testing/*"
17+
]
1518
}

0 commit comments

Comments
 (0)