From dfabb1bfa82463ab9bd47af493d5872e0f5a78b8 Mon Sep 17 00:00:00 2001 From: "s.uchihori" Date: Mon, 14 Apr 2025 17:08:11 +0900 Subject: [PATCH 1/2] fix --- mod.ts | 4 ++++ v0.ts | 4 ---- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/mod.ts b/mod.ts index 131ce0d..093fa8f 100644 --- a/mod.ts +++ b/mod.ts @@ -1 +1,5 @@ +/** + * @module result + * @description Represents a result that can be either successful or an error. + */ export * from "./v0.ts"; diff --git a/v0.ts b/v0.ts index 400f6f1..d2b12ef 100644 --- a/v0.ts +++ b/v0.ts @@ -1,7 +1,3 @@ -/** - * @module result - * @description Represents a result that can be either successful or an error. - */ /** * @description Represents a successful result. * @example From 5c8f4869f01559c38e06d6915105ffddd1467964 Mon Sep 17 00:00:00 2001 From: "s.uchihori" Date: Mon, 14 Apr 2025 17:08:27 +0900 Subject: [PATCH 2/2] update --- deno.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/deno.json b/deno.json index c144895..f6b79a7 100644 --- a/deno.json +++ b/deno.json @@ -4,7 +4,7 @@ "@std/assert": "jsr:@std/assert@1" }, "name": "@showichiro/result", - "version": "0.1.1", + "version": "0.1.2", "exports": { ".": "./mod.ts", "./v0": "./v0.ts"