From 1ad7b66ef0b129584384a35d2626493499f304e8 Mon Sep 17 00:00:00 2001 From: Murderlon Date: Wed, 20 Nov 2024 18:50:28 +0100 Subject: [PATCH 1/3] Fix tsconfig to also build @tus/azure --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index ec48ea78..d92eef87 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -2,6 +2,7 @@ "$schema": "https://json.schemastore.org/tsconfig.json", "files": [], "references": [ + { "path": "packages/azure-store/tsconfig.json" }, { "path": "packages/file-store/tsconfig.json" }, { "path": "packages/gcs-store/tsconfig.json" }, { "path": "packages/s3-store/tsconfig.json" }, From b4d8fe0b08edd457f8ded978e757cd6609e97743 Mon Sep 17 00:00:00 2001 From: Murderlon Date: Wed, 20 Nov 2024 18:51:05 +0100 Subject: [PATCH 2/3] Add changeset --- .changeset/friendly-panthers-know.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/friendly-panthers-know.md diff --git a/.changeset/friendly-panthers-know.md b/.changeset/friendly-panthers-know.md new file mode 100644 index 00000000..941ee131 --- /dev/null +++ b/.changeset/friendly-panthers-know.md @@ -0,0 +1,5 @@ +--- +"@tus/azure-store": patch +--- + +Correctly publish dist folder From d96b4ff246ec65c32487b6617e745edf7da80199 Mon Sep 17 00:00:00 2001 From: Murderlon Date: Wed, 20 Nov 2024 18:52:51 +0100 Subject: [PATCH 3/3] Also fix test/tsconfig.json --- test/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/test/tsconfig.json b/test/tsconfig.json index 820176e0..e27cf8a4 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -1,6 +1,7 @@ { "$schema": "https://json.schemastore.org/tsconfig.json", "references": [ + { "path": "../packages/azure-store/tsconfig.build.json" }, { "path": "../packages/file-store/tsconfig.build.json" }, { "path": "../packages/gcs-store/tsconfig.build.json" }, { "path": "../packages/s3-store/tsconfig.build.json" },