refactor(core): Move module logic to @n8n/backend-common (#16528)

Co-authored-by: Danny Martini <danny@n8n.io>
This commit is contained in:
Iván Ovejero
2025-06-20 18:55:07 +02:00
committed by GitHub
parent 1573ae6352
commit 37efd209c9
18 changed files with 214 additions and 241 deletions

View File

@@ -4,3 +4,5 @@ export * from './types';
export { inDevelopment, inProduction, inTest } from './environment';
export { isObjectLiteral } from './utils/is-object-literal';
export { Logger } from './logging/logger';
export { ModuleRegistry } from './modules/module-registry';
export { ModulesConfig, ModuleName } from './modules/modules.config';