From cc53bc014f4d48e37a170b635a839e35ff4c4600 Mon Sep 17 00:00:00 2001 From: Kawa Date: Thu, 26 Mar 2026 10:53:49 +0100 Subject: [PATCH] feat(02-01): create generators barrel index.ts MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit - Re-exports buildRcloneConf, buildIntuneInstall, buildIntuneDetection, buildRmmScript - Phase 4 will import all generators from this single entry point - No implementation logic — purely structural re-exports --- src/generators/index.ts | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 src/generators/index.ts diff --git a/src/generators/index.ts b/src/generators/index.ts new file mode 100644 index 0000000..6d8315c --- /dev/null +++ b/src/generators/index.ts @@ -0,0 +1,7 @@ +// src/generators/index.ts +// Re-exports all generator functions. +// Phase 4 imports generators from this barrel — do not remove exports. +export { buildRcloneConf } from './rclone-conf'; +export { buildIntuneInstall } from './intune-install'; +export { buildIntuneDetection } from './intune-detection'; +export { buildRmmScript } from './rmm-script';