|
62 | 62 | },
|
63 | 63 | "tasks": {
|
64 | 64 | "test:all": "deno task test && deno task npm && deno task test:cloudflare && deno task bun-link && deno task test:bun",
|
65 |
| - "test": "deno fmt && deno lint && deno check packages/*/*.ts packages/*/src/**/*.ts packages/*/samples/**/*.ts packages/*/test/*.ts && deno test --fail-fast --doc --coverage=coverage --parallel --allow-read", |
| 65 | + "test": "deno fmt && deno lint && deno task check && deno test --fail-fast --doc --coverage=coverage --parallel --allow-read", |
66 | 66 | "test:common": "cd packages/common && deno task test",
|
67 | 67 | "test:core": "cd packages/core && deno task test",
|
68 | 68 | "test:chacha20poly1305": "cd packages/chacha20poly1305 && deno task test",
|
|
91 | 91 | "test:bun:hpke-js": "cd packages/hpke-js && deno task test:bun",
|
92 | 92 | "test:bun:ml-kem": "cd packages/ml-kem && deno task test:bun",
|
93 | 93 | "cov": "deno coverage ./coverage --lcov --exclude='test'",
|
| 94 | + "check": "deno task check:common && deno task check:core && deno task check:chacha20poly1305 && deno task check:dhkem-x25519 && deno task check:dhkem-x448 && deno task check:dhkem-secp256k1 && deno task check:hybridkem-x-wing && deno task check:hpke-js && deno task check:ml-kem", |
| 95 | + "check:common": "cd packages/common && deno task check", |
| 96 | + "check:core": "cd packages/core && deno task check", |
| 97 | + "check:chacha20poly1305": "cd packages/chacha20poly1305 && deno task check", |
| 98 | + "check:dhkem-x25519": "cd packages/dhkem-x25519 && deno task check", |
| 99 | + "check:dhkem-x448": "cd packages/dhkem-x448 && deno task check", |
| 100 | + "check:dhkem-secp256k1": "cd packages/dhkem-secp256k1 && deno task check", |
| 101 | + "check:hybridkem-x-wing": "cd packages/hybridkem-x-wing && deno task check", |
| 102 | + "check:hpke-js": "cd packages/hpke-js && deno task check", |
| 103 | + "check:ml-kem": "cd packages/ml-kem && deno task check", |
94 | 104 | "npm": "deno task dnt && deno task npm-link && deno task npm-pack && cd npm && npm install",
|
95 | 105 | "dnt": "deno task dnt:common && 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-x-wing && deno task dnt:hpke-js && deno task dnt:ml-kem",
|
96 | 106 | "dnt:common": "cd packages/common && deno task dnt",
|
|
0 commit comments