From dbe9081295a62b5b89b1db571d299df83eb9c35f Mon Sep 17 00:00:00 2001 From: Slawomir Koszewski Date: Thu, 21 May 2026 16:48:06 +0200 Subject: [PATCH] fix: correct Azure Function host configuration placement. --- src/function/host.json => host.json | 0 package.json | 8 +++++++- 2 files changed, 7 insertions(+), 1 deletion(-) rename src/function/host.json => host.json (100%) diff --git a/src/function/host.json b/host.json similarity index 100% rename from src/function/host.json rename to host.json diff --git a/package.json b/package.json index 1a2f2ae..e6d7ea1 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,13 @@ } ], "description": "Automated SSL/TLS certificate management using ACME protocol with Azure KeyVault and Azure DNS", - "main": "dist/index.js", + "main": "dist/function/index.js", + "exports": { + ".": { + "types": "./dist/index.d.ts", + "default": "./dist/index.js" + } + }, "types": "dist/index.d.ts", "bin": { "azure-acme-provisioner": "./dist/cli.js"