From c595ee10521ea30550ccf76741d3c7e345aadfe7 Mon Sep 17 00:00:00 2001 From: David Dal Busco Date: Wed, 24 Sep 2025 15:46:27 +0200 Subject: [PATCH] refactor: move deprecated dev command module --- src/commands/{ => deprecated}/dev.ts | 20 ++++++++++---------- src/index.ts | 2 +- 2 files changed, 11 insertions(+), 11 deletions(-) rename src/commands/{ => deprecated}/dev.ts (60%) diff --git a/src/commands/dev.ts b/src/commands/deprecated/dev.ts similarity index 60% rename from src/commands/dev.ts rename to src/commands/deprecated/dev.ts index 544e4020..35f2edc9 100644 --- a/src/commands/dev.ts +++ b/src/commands/deprecated/dev.ts @@ -1,14 +1,14 @@ import {red} from 'kleur'; -import {logHelpDev} from '../help/dev.help'; -import {logHelpEmulatorStart} from '../help/emulator.start.help'; -import {logHelpEmulatorWait} from '../help/emulator.wait.help'; -import {logHelpFunctionsBuild} from '../help/functions.build.help'; -import {logHelpFunctionsEject} from '../help/functions.eject.help'; -import {start} from '../services/emulator/start.services'; -import {stop} from '../services/emulator/stop.services'; -import {wait} from '../services/emulator/wait.services'; -import {build} from '../services/functions/build/build.services'; -import {eject} from '../services/functions/eject/eject.services'; +import {logHelpDev} from '../../help/dev.help'; +import {logHelpEmulatorStart} from '../../help/emulator.start.help'; +import {logHelpEmulatorWait} from '../../help/emulator.wait.help'; +import {logHelpFunctionsBuild} from '../../help/functions.build.help'; +import {logHelpFunctionsEject} from '../../help/functions.eject.help'; +import {start} from '../../services/emulator/start.services'; +import {stop} from '../../services/emulator/stop.services'; +import {wait} from '../../services/emulator/wait.services'; +import {build} from '../../services/functions/build/build.services'; +import {eject} from '../../services/functions/eject/eject.services'; /** * @deprecated aliases for backwards compatibility diff --git a/src/index.ts b/src/index.ts index 08deccc6..8ad02b98 100644 --- a/src/index.ts +++ b/src/index.ts @@ -5,7 +5,7 @@ import {changes, helpChanges} from './commands/changes'; import {config} from './commands/config'; import {clear, helpClear} from './commands/deprecated/clear'; import {deploy, helpDeploy} from './commands/deprecated/deploy'; -import {dev, helpDev} from './commands/dev'; +import {dev, helpDev} from './commands/deprecated/dev'; import {emulator, helpEmulator} from './commands/emulator'; import {functions, helpFunctions} from './commands/functions'; import {helpHosting, hosting} from './commands/hosting';