Skip to content

Commit

Permalink
fix(sdk): exclude tests (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
c43721 authored Dec 8, 2024
2 parents d5a8a0e + c3f589f commit a694c01
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion javascript-sdk/deno.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"exclude": [".git", "coverage", "docs", "tests"],
"exclude": [".git", "coverage", "docs"],
"tasks": {
"test": "deno test -A --clean"
},
Expand Down
5 changes: 4 additions & 1 deletion javascript-sdk/etf2l/deno.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,12 @@
{
"name": "@tf2software/etf2l",
"version": "0.0.1-alpha1",
"version": "0.0.1-alpha2",
"tasks": {
"gen-type-guards": "deno run --allow-env --allow-sys --no-lock --allow-read --allow-write npm:ts-auto-guard ./tests/etf2lTypeGuards.ts --debug --project=./tests --import-extension=ts"
},
"publish": {
"exclude": ["tests"]
},
"exports": {
".": "./mod.ts",
"./api": "./mod.ts",
Expand Down
5 changes: 4 additions & 1 deletion javascript-sdk/logstf/deno.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
{
"name": "@tf2software/logstf",
"version": "0.0.3",
"version": "0.0.4",
"publish": {
"exclude": ["tests"]
},
"exports": {
".": "./mod.ts",
"./api": "./mod.ts",
Expand Down

0 comments on commit a694c01

Please sign in to comment.