Skip to content

Commit fc28dcf

Browse files
committed
๐Ÿ—‘๏ธ chore: PushCommand ๋ฐ ๊ด€๋ จ ์ฝ”๋“œ ์ œ๊ฑฐ
- PushCommand๋ฅผ CLI ๋“ฑ๋ก์—์„œ ์˜๋„์ ์œผ๋กœ ์ œ๊ฑฐํ•˜๊ณ , ๊ด€๋ จ ํŒŒ์ผ์€ ์ด๋ ฅ์„ ๋ณด์กดํ•˜๊ธฐ ์œ„ํ•ด ์œ ์ง€ํ•จ. - OAuthCallbackCommand, PushCommand ๋ฐ ๊ด€๋ จ ํ…Œ์ŠคํŠธ์—์„œ ๋ถˆํ•„์š”ํ•œ ์ฝ”๋“œ ์ œ๊ฑฐ. - BuildCommand์—์„œ ์‚ฌ์šฉ๋˜์ง€ ์•Š๋Š” ์˜ต์…˜ ๋ฐ ๊ด€๋ จ ์ฝ”๋“œ ์ •๋ฆฌ.
1 parent 56ac5bd commit fc28dcf

File tree

6 files changed

+8
-934
lines changed

6 files changed

+8
-934
lines changed

โ€Žsrc/modules/auth/auth.module.tsโ€Ž

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@ import { Module } from '@nestjs/common';
33
import { AuthService } from './auth.service';
44
import { LoginCommand } from './commands/login.command';
55
import { LogoutCommand } from './commands/logout.command';
6-
import { OAuthCallbackCommand } from './commands/oauth-callback.command';
76
import { SessionStorage } from './session-storage';
87

98
@Module({
@@ -12,7 +11,6 @@ import { SessionStorage } from './session-storage';
1211
SessionStorage,
1312
LoginCommand,
1413
LogoutCommand,
15-
OAuthCallbackCommand,
1614
],
1715
exports: [AuthService],
1816
})

โ€Žsrc/modules/auth/commands/oauth-callback.command.tsโ€Ž

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,7 @@ interface OAuthCallbackOptions {
1010
}
1111

1212
@Injectable()
13-
@Command({
14-
name: 'oauth-callback',
15-
description: 'Process OAuth callback URL after authentication',
16-
})
13+
// Command intentionally unregistered from module; file retained for history.
1714
export class OAuthCallbackCommand extends CommandRunner {
1815
constructor(private readonly authService: AuthService) {
1916
super();

โ€Žsrc/modules/build/commands/build.command.tsโ€Ž

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ export class BuildCommand extends CommandRunner {
133133
// Push-related options
134134
const shouldPush = options?.push as boolean;
135135
const pushPublic = options?.pushPublic as boolean;
136-
const pushTeam = options?.pushTeam as string;
136+
// pushTeam removed
137137

138138
try {
139139
// Configure logging based on options
@@ -463,7 +463,6 @@ export class BuildCommand extends CommandRunner {
463463
cloudPackage,
464464
{
465465
pushPublic,
466-
pushTeam,
467466
},
468467
isVerbose,
469468
);

0 commit comments

Comments
ย (0)