Skip to content

Commit

Permalink
Merge pull request #367 from dajiaji/remove-scripts
Browse files Browse the repository at this point in the history
Remove scripts.
  • Loading branch information
dajiaji authored Sep 1, 2024
2 parents a8d93a0 + f8395f7 commit f950c03
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 30 deletions.
9 changes: 8 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,14 @@
"tasks": {
"test": "deno fmt && deno lint && deno test -A --fail-fast --doc --coverage=coverage --parallel --allow-read",
"cov": "deno coverage ./coverage --lcov --exclude='test'",
"dnt": "./scripts/run_dnt.sh",
"dnt": "deno task dnt:core && deno task dnt:chacha20poly1305 && deno task dnt:dhkem-x25519 && deno task dnt:dhkem-x448 && deno task dnt:dhkem-secp256k1 && deno task dnt:hybridkem-x25519-kyber768 && deno task dnt:hpke-js",
"dnt:core": "cd x/core && deno task dnt",
"dnt:chacha20poly1305": "cd x/chacha20poly1305 && deno task dnt",
"dnt:dhkem-x25519": "cd x/dhkem-x25519 && deno task dnt",
"dnt:dhkem-x448": "cd x/dhkem-x448 && deno task dnt",
"dnt:dhkem-secp256k1": "cd x/dhkem-secp256k1 && deno task dnt",
"dnt:hybridkem-x25519-kyber768": "cd x/hybridkem-x25519-kyber768 && deno task dnt",
"dnt:hpke-js": "cd x/hpke-js && deno task dnt",
"minify": "esbuild npm/esm/mod.js --bundle --format=esm --minify"
}
}
29 changes: 0 additions & 29 deletions scripts/run_dnt.sh

This file was deleted.

0 comments on commit f950c03

Please sign in to comment.