-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: fix sent draft event & optimized filters & optimized packag…
…e imports
- Loading branch information
Showing
65 changed files
with
418 additions
and
873 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,8 +5,11 @@ | |
"test": "deno test --no-check -A", | ||
"test:unit": "deno test test/unit --no-check -A", | ||
"test:integration": "deno test test/integration --no-check -A", | ||
"example:db:createInstance": "deno run --allow-all src/database/example/createInstance.ts", | ||
"example:db:node": "deno run --allow-all src/database/example/node.ts", | ||
"test:integration:nip01": "deno test test/integration/features/nip-01/nip-01.feature.test.ts --no-check -A", | ||
"test:integration:nip09": "deno test test/integration/features/nip-09/nip-09.feature.test.ts --no-check -A", | ||
"test:integration:nip16": "deno test test/integration/features/nip-16/nip-16.feature.test.ts --no-check -A", | ||
"test:integration:nip28": "deno test test/integration/features/nip-28/nip-28.feature.test.ts --no-check -A", | ||
"test:integration:nip33": "deno test test/integration/features/nip-33/nip-33.feature.test.ts --no-check -A", | ||
"git-hooks": "deno run --no-check=remote --allow-run=deno,git --allow-read --allow-write=.git-hooks https://deno.land/x/githooked/mod.ts install", | ||
"bump": "deno run --allow-all .bump/bump.ts" | ||
}, | ||
|
@@ -29,7 +32,24 @@ | |
"joi": "https://cdn.skypack.dev/[email protected]?dts", | ||
"rxjs": "https://cdn.skypack.dev/[email protected]?dts", | ||
"chai-as-promised": "https://cdn.skypack.dev/[email protected]?dts", | ||
"events": "https://deno.land/[email protected]/node/events.ts" | ||
"events": "node:events", | ||
"stream": "node:stream", | ||
"stream/promises": "node:stream/promises", | ||
"dns": "node:dns", | ||
"net": "node:net", | ||
"tls": "node:tls", | ||
"path": "node:path", | ||
"os": "node:os", | ||
"fs": "node:fs", | ||
"fs/promises": "node:fs/promises", | ||
"bson": "npm:[email protected]", | ||
"@isaacs/ttlcache": "npm:@isaacs/[email protected]", | ||
"mongodb": "npm:[email protected]", | ||
"mongoose": "npm:[email protected]", | ||
"axios": "npm:[email protected]", | ||
"tor-control-ts": "npm:[email protected]", | ||
"js-yaml": "npm:[email protected]", | ||
"bech32": "npm:[email protected]" | ||
}, | ||
"fmt": { | ||
"files": { | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
import { EventEmitter } from 'node:events' | ||
import { EventEmitter } from 'events' | ||
|
||
import { Bulk } from 'redis' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
import net from 'node:net' | ||
import net from 'net' | ||
|
||
import { Knex } from 'npm:[email protected]' | ||
import mongoose from 'npm:mongoose' | ||
import mongoose from 'mongoose' | ||
|
||
import { EventTags } from '../constants/base.ts' | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.