code: nextjs,frontends,snippets (2 files)

This commit is contained in:
2025-12-26 04:04:35 +00:00
parent 8fc0bef020
commit 058bbb4625
2 changed files with 4 additions and 4 deletions

View File

@@ -18,9 +18,9 @@ export type { LuaSnippet } from './snippets/lua-snippets-data'
export { LUA_SNIPPET_CATEGORIES, LUA_SNIPPETS } from './snippets/lua-snippets-data'
// Re-export functions for backward compatibility
export { getSnippetsByCategory } from './functions/get-snippets-by-category'
export { searchSnippets } from './functions/search-snippets'
export { getSnippetById } from './functions/get-snippet-by-id'
export { getSnippetsByCategory } from './functions/snippets/get-snippets-by-category'
export { searchSnippets } from './functions/snippets/search-snippets'
export { getSnippetById } from './functions/snippets/get-snippet-by-id'
// Re-export class wrapper
export { LuaSnippetUtils } from './LuaSnippetUtils'

View File

@@ -6,7 +6,7 @@ export type {
PackageTemplateConfig,
ReactAppTemplateConfig,
} from './types'
export { appendExportPath } from './append-export-path'
export { appendExportPath } from './file-operations/export/append-export-path'
export { buildPackageTemplate } from './build-package-template'
export { buildReactAppTemplate } from './build-react-app-template'
export { buildZipFromFileTree } from './build-zip-from-file-tree'