Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 11 additions & 3 deletions packages/analyzer/index.js
Original file line number Diff line number Diff line change
@@ -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';
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";