Skip to content

Commit

Permalink
Merge pull request #192 from dajiaji/include-mod-ts
Browse files Browse the repository at this point in the history
Add mod.ts to formatter/linter targets.
  • Loading branch information
dajiaji authored Jul 23, 2023
2 parents 1051584 + c40dcb1 commit 57377b9
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 2 additions & 1 deletion deno.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
"CHANGES.md",
"deno.json",
"dnt.ts",
"mod.ts",
"samples/",
"src/",
"test/"
Expand All @@ -22,7 +23,7 @@
]
},
"lint": {
"include": ["samples/", "src/", "test/"],
"include": ["mod.ts", "samples/", "src/", "test/"],
"exclude": [
"samples/node/node_modules",
"samples/ts-node/node_modules",
Expand Down
6 changes: 1 addition & 5 deletions mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,4 @@ export {
DhkemX25519HkdfSha256,
DhkemX448HkdfSha512,
} from "./src/kems/dhkem.ts";
export {
HkdfSha256,
HkdfSha384,
HkdfSha512,
} from "./src/kdfs/hkdf.ts";
export { HkdfSha256, HkdfSha384, HkdfSha512 } from "./src/kdfs/hkdf.ts";

0 comments on commit 57377b9

Please sign in to comment.