refactor: to node action
CI / Test (pull_request) Failing after 10s
CI / Check Dist (pull_request) Successful in 10s
CI / Dry-Run (pull_request) Failing after 1m1s

This commit is contained in:
2026-06-27 13:32:05 +02:00
parent 3730a56a77
commit 498601b81a
20 changed files with 24604 additions and 174 deletions
+11
View File
@@ -0,0 +1,11 @@
import { defineConfig } from "rolldown";
export default defineConfig({
input: "src/index.ts",
platform: "node",
tsconfig: "./tsconfig.json",
output: {
file: "dist/index.js",
format: "cjs",
},
});