-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* chore(deps): update deno dependencies * bundle file --------- Co-authored-by: GitHub <[email protected]> Co-authored-by: ayame113 <[email protected]>
- Loading branch information
1 parent
42c461f
commit f8d6552
Showing
9 changed files
with
23 additions
and
18 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 |
---|---|---|
|
@@ -20,5 +20,6 @@ | |
"exclude": ["./js/"] | ||
} | ||
}, | ||
"importMap": "./import-map.json" | ||
"importMap": "./import-map.json", | ||
"lock": false | ||
} |
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
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 |
---|---|---|
|
@@ -14,7 +14,7 @@ export interface StringifyStreamOptions { | |
* stream to stringify [JSON lines](https://jsonlines.org/), [NDJSON](http://ndjson.org/) and [JSON Text Sequences](https://datatracker.ietf.org/doc/html/rfc7464). | ||
* | ||
* ```ts | ||
* import { readableStreamFromIterable } from "https://deno.land/std@0.173.0/streams/mod.ts"; | ||
* import { readableStreamFromIterable } from "https://deno.land/std@0.185.0/streams/mod.ts"; | ||
* import { JSONLinesStringifyStream } from "https://deno.land/x/[email protected]/mod.ts"; | ||
* | ||
* const file = await Deno.open(new URL("./tmp.concat-json", import.meta.url), { | ||
|
@@ -57,7 +57,7 @@ export class JSONLinesStringifyStream extends TransformStream<unknown, string> { | |
* stream to stringify [Concatenated JSON](https://en.wikipedia.org/wiki/JSON_streaming#Concatenated_JSON). | ||
* | ||
* ```ts | ||
* import { readableStreamFromIterable } from "https://deno.land/std@0.173.0/streams/mod.ts"; | ||
* import { readableStreamFromIterable } from "https://deno.land/std@0.185.0/streams/mod.ts"; | ||
* import { ConcatenatedJSONStringifyStream } from "https://deno.land/x/[email protected]/mod.ts"; | ||
* | ||
* const file = await Deno.open(new URL("./tmp.concat-json", import.meta.url), { | ||
|
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 |
---|---|---|
|
@@ -12,7 +12,7 @@ type _QueuingStrategy<T> = QueuingStrategy<T | undefined>; | |
* Convert the generator function into a TransformStream. | ||
* | ||
* ```ts | ||
* import { readableStreamFromIterable } from "https://deno.land/std@0.173.0/streams/mod.ts"; | ||
* import { readableStreamFromIterable } from "https://deno.land/std@0.185.0/streams/mod.ts"; | ||
* import { transformStreamFromGeneratorFunction } from "https://deno.land/x/[email protected]/mod.ts"; | ||
* | ||
* const reader = readableStreamFromIterable([0, 1, 2]) | ||
|