Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
uki00a authored Nov 23, 2023
1 parent e83cc4f commit 768cb08
Show file tree
Hide file tree
Showing 13 changed files with 15 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .denov
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v1.37.1
v1.38.2
2 changes: 1 addition & 1 deletion modules-lock.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"https://deno.land/std": {
"version": "@0.203.0",
"version": "@0.207.0",
"modules": [
"/assert/mod.ts",
"/async/deferred.ts",
Expand Down
2 changes: 1 addition & 1 deletion modules.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"https://deno.land/std": {
"version": "@0.203.0",
"version": "@0.207.0",
"modules": [
"/assert/mod.ts",
"/async/deferred.ts",
Expand Down
4 changes: 3 additions & 1 deletion tools/make_mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ const decoder = new TextDecoder();
interface Node {
kind: string;
name: string;
declarationKind: "export" | "private";
}

async function doc(fileName: string): Promise<Array<Node>> {
Expand Down Expand Up @@ -79,7 +80,8 @@ let content = `// Generated by tools/make_mod.ts. Don't edit.\n`;
// Expose types from *.ts.
for (const f of files) {
const types = (await doc(f)).filter((node) => {
return node.kind === "interface" || node.kind === "typeAlias";
return (node.kind === "interface" || node.kind === "typeAlias") &&
node.declarationKind !== "private";
}).map((node) => node.name);
if (types.length > 0) {
content += `export type { ${types.join(",")} } from "./${f}"\n`;
Expand Down
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/assert/mod.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.203.0/assert/mod.ts";
export * from "https://deno.land/std@0.207.0/assert/mod.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/async/deferred.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.203.0/async/deferred.ts";
export * from "https://deno.land/std@0.207.0/async/deferred.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/async/delay.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.203.0/async/delay.ts";
export * from "https://deno.land/std@0.207.0/async/delay.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/bytes/concat.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.203.0/bytes/concat.ts";
export * from "https://deno.land/std@0.207.0/bytes/concat.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/buf_reader.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.203.0/io/buf_reader.ts";
export * from "https://deno.land/std@0.207.0/io/buf_reader.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/io/buf_writer.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.203.0/io/buf_writer.ts";
export * from "https://deno.land/std@0.207.0/io/buf_writer.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/streams/read_all.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.203.0/streams/read_all.ts";
export * from "https://deno.land/std@0.207.0/streams/read_all.ts";
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.203.0/streams/reader_from_stream_reader.ts";
export * from "https://deno.land/std@0.207.0/streams/reader_from_stream_reader.ts";
2 changes: 1 addition & 1 deletion vendor/https/deno.land/std/testing/bdd.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export * from "https://deno.land/std@0.203.0/testing/bdd.ts";
export * from "https://deno.land/std@0.207.0/testing/bdd.ts";

0 comments on commit 768cb08

Please sign in to comment.