From 45ccbd8eaba4a28683c85ce4aed252dfff2d5a0c Mon Sep 17 00:00:00 2001 From: Zachary Belford Date: Tue, 31 Jan 2023 22:02:23 -0800 Subject: [PATCH] fix: json-schema-tools/semantic-release-transpiler changed outpath --- .releaserc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.releaserc b/.releaserc index d6f016b..c0463bd 100644 --- a/.releaserc +++ b/.releaserc @@ -4,7 +4,7 @@ "plugins": [ "@semantic-release/commit-analyzer", ["@json-schema-tools/semantic-release-transpiler", { - "outpath": "./", + "outpath": ".", "schemaLocation": "./schema.json", "languages": { "ts": true, "go": true, "py": true, "rs": true } }], @@ -19,7 +19,7 @@ ], "verifyConditions": [ ["@json-schema-tools/semantic-release-transpiler", { - "outpath": "./", + "outpath": ".", "schemaLocation": "./schema.json", "languages": { "ts": true, "go": true, "py": true, "rs": true } }], @@ -33,7 +33,7 @@ ], "prepare": [ ["@json-schema-tools/semantic-release-transpiler", { - "outpath": "./", + "outpath": ".", "schemaLocation": "./schema.json", "languages": { "ts": true, "go": true, "py": true, "rs": true } }],