generated from hyper63/adapter-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump dependencies and refactor usages. Latest mongo in-memory …
…server defaults to [email protected]
- Loading branch information
1 parent
d2fbb94
commit e121164
Showing
8 changed files
with
261 additions
and
15 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 |
---|---|---|
@@ -1,4 +1 @@ | ||
#!/usr/bin/env sh | ||
. "$(dirname -- "$0")/_/husky.sh" | ||
|
||
deno task staged |
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
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 |
---|---|---|
|
@@ -6,12 +6,12 @@ export { default as crocks } from 'npm:[email protected]' | |
// @deno-types="npm:@types/ramda@^0.29.9" | ||
export * as R from 'npm:[email protected]' | ||
|
||
export { EJSON } from 'npm:bson@6.2.0' | ||
export { type Collection, MongoClient } from 'npm:mongodb@6.3.0' | ||
export { EJSON } from 'npm:bson@6.8.0' | ||
export { type Collection, MongoClient } from 'npm:mongodb@6.8.0' | ||
export { default as cuid } from 'npm:[email protected]' | ||
export { MongoMemoryServer } from 'npm:mongodb-memory-server-core@9.1.1' | ||
export { MongoMemoryServer } from 'npm:mongodb-memory-server-core@10.0.0' | ||
|
||
export { join } from 'https://deno.land/std@0.208.0/path/mod.ts' | ||
export { join } from 'https://deno.land/std@0.224.0/path/mod.ts' | ||
|
||
import { | ||
HyperErr, | ||
|
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,12 +1,11 @@ | ||
export { default as pluginFactory } from 'https://raw.githubusercontent.com/hyper63/hyper/hyper%40v4.3.2/packages/core/utils/plugin-schema.ts' | ||
export { default as pluginFactory } from 'https://raw.githubusercontent.com/hyper63/hyper/hyper%40v4.3.3/packages/core/utils/plugin-schema.ts' | ||
export { data as dataPort } from 'https://raw.githubusercontent.com/hyper63/hyper/hyper-port-data%40v2.3.0/packages/port-data/mod.ts' | ||
|
||
// std lib deps | ||
export { deferred } from 'https://deno.land/[email protected]/async/deferred.ts' | ||
export { | ||
assert, | ||
assertEquals, | ||
assertObjectMatch, | ||
assertRejects, | ||
assertThrows, | ||
} from 'https://deno.land/std@0.208.0/assert/mod.ts' | ||
} from 'https://deno.land/std@0.224.0/assert/mod.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