mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-21 03:56:23 +08:00
chore: bump deps (#14777)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Migration and config commands now feature interactive prompts for required inputs. * **Bug Fixes** * Enhanced error handling in CLI operations. * **Chores** * Updated GraphQL Code Generator toolchain to v6. <!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
@@ -2,18 +2,12 @@ import { Module } from '@nestjs/common';
|
||||
|
||||
import { FunctionalityModules } from '../app.module';
|
||||
import { IndexerModule } from '../plugins/indexer';
|
||||
import { CreateCommand, NameQuestion } from './commands/create';
|
||||
import { CreateCommand } from './commands/create';
|
||||
import { ImportConfigCommand } from './commands/import';
|
||||
import { RevertCommand, RunCommand } from './commands/run';
|
||||
|
||||
@Module({
|
||||
imports: [...FunctionalityModules, IndexerModule],
|
||||
providers: [
|
||||
NameQuestion,
|
||||
CreateCommand,
|
||||
RunCommand,
|
||||
RevertCommand,
|
||||
ImportConfigCommand,
|
||||
],
|
||||
providers: [CreateCommand, RunCommand, RevertCommand, ImportConfigCommand],
|
||||
})
|
||||
export class CliAppModule {}
|
||||
|
||||
Reference in New Issue
Block a user