From aa320202442e57cc65a644d947f5db219dab5085 Mon Sep 17 00:00:00 2001 From: Phil Parsons Date: Sun, 14 Sep 2025 10:55:53 +0100 Subject: [PATCH] feat: export analyzer plugins for programmatic use cases --- packages/analyzer/index.js | 14 +++++++++++--- 1 file changed, 11 insertions(+), 3 deletions(-) diff --git a/packages/analyzer/index.js b/packages/analyzer/index.js index b494552..925ecbc 100755 --- a/packages/analyzer/index.js +++ b/packages/analyzer/index.js @@ -1,3 +1,11 @@ -export { create } from './src/create.js'; -// Export ts to avoid version mismatch when using the create() method programmatically -export { default as ts } from 'typescript'; \ No newline at end of file +export { create } from "./src/create.js"; + +// Export framework plugins +export { catalystPlugin } from "./src/features/framework-plugins/catalyst/catalyst.js"; +export { catalystPlugin2 } from "./src/features/framework-plugins/catalyst-major-2/catalyst.js"; +export { stencilPlugin } from "./src/features/framework-plugins/stencil/stencil.js"; +export { litPlugin } from "./src/features/framework-plugins/lit/lit.js"; +export { fastPlugin } from "./src/features/framework-plugins/fast/fast.js"; + +// Export ts to avoid version mismatch when using the create() method programmatically +export { default as ts } from "typescript";