From fb47bb669905778428501c1f3c7332a0f23aa62d Mon Sep 17 00:00:00 2001 From: Wanjohi Date: Sun, 2 Mar 2025 01:47:00 +0300 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9C=20fix:=20Remove=20old.sst.config.t?= =?UTF-8?q?s=20file?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- old.sst.config.ts | 29 ----------------------------- 1 file changed, 29 deletions(-) delete mode 100644 old.sst.config.ts diff --git a/old.sst.config.ts b/old.sst.config.ts deleted file mode 100644 index 71bc2c45..00000000 --- a/old.sst.config.ts +++ /dev/null @@ -1,29 +0,0 @@ -/// -import { readdirSync } from "fs"; -export default $config({ - app(input) { - return { - name: "nestri", - removal: input?.stage === "production" ? "retain" : "remove", - home: "cloudflare", - providers: { - cloudflare: "5.37.1", - docker: "4.5.5", - "@pulumi/command": "1.0.1", - random: "4.16.8", - aws: "6.67.0", - tls: "5.1.0", - command: "0.0.1-testwindows.signing", - awsx: "2.21.0", - }, - }; - }, - async run() { - const outputs = {}; - for (const value of readdirSync("./infra/")) { - const result = await import("./infra/" + value); - if (result.outputs) Object.assign(outputs, result.outputs); - } - return outputs; - }, -});