From 28a413c98106761ed034ede8bd8c7487c87dbe8a Mon Sep 17 00:00:00 2001 From: Byakuren Hijiri Date: Fri, 2 Aug 2024 01:38:55 +0000 Subject: [PATCH] feat: Add index.ts --- knip.json | 1 - src/index.ts | 1 + 2 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 src/index.ts diff --git a/knip.json b/knip.json index 06e67d204..7807aea93 100644 --- a/knip.json +++ b/knip.json @@ -5,7 +5,6 @@ "ignore": [ "src/grammar/ast.ts", "src/prettyPrinter.ts", - "src/pipeline/build.ts", ".github/workflows/tact.yml" ], "ignoreDependencies": [ diff --git a/src/index.ts b/src/index.ts new file mode 100644 index 000000000..d1ec5a3dd --- /dev/null +++ b/src/index.ts @@ -0,0 +1 @@ +export { enableFeatures, build } from "./pipeline/build";