Compare commits

..

9 commits

Author SHA1 Message Date
1ea2f7c086
refactor(game-controls): update import paths for consistency
Some checks failed
CI / Get Changed Files (pull_request) Successful in 6s
CI / Checkstyle Main (pull_request) Has been skipped
CI / eslint (pull_request) Successful in 20s
CI / test-build (pull_request) Failing after 26s
CI / prettier (pull_request) Failing after 32s
2025-04-02 09:21:24 +02:00
ae8dcab038
style: fix formatting in constructor definitions 2025-04-02 09:20:45 +02:00
aad692aea5
refactor(blackjack): update import paths for components 2025-04-02 09:20:42 +02:00
57a4b03bde
style(tsconfig): update path mappings to array syntax 2025-04-02 09:20:18 +02:00
ebf2ee0531
style(tsconfig): fix path configuration formatting 2025-04-02 09:20:17 +02:00
35d53bce30
style: format constructor style in components 2025-04-02 09:20:16 +02:00
f5a16efa67
refactor: update imports to use absolute paths 2025-04-02 09:20:15 +02:00
a425fdea80
refactor: update import paths for better readability 2025-04-02 09:20:11 +02:00
f881f82ef1
refactor(blackjack): move GameState to feature folder
All checks were successful
CI / Get Changed Files (pull_request) Successful in 6s
CI / eslint (pull_request) Successful in 19s
CI / test-build (pull_request) Successful in 27s
CI / prettier (pull_request) Successful in 41s
CI / Checkstyle Main (pull_request) Successful in 1m25s
2025-04-02 09:18:43 +02:00
5 changed files with 4 additions and 4 deletions

View file

@ -10,7 +10,7 @@ import { Card, BlackjackGame } from './models/blackjack.model';
import { BlackjackService } from './services/blackjack.service';
import { HttpErrorResponse } from '@angular/common/http';
import { GameResultComponent } from './components/game-result/game-result.component';
import { GameState } from '../../../enum/gameState';
import { GameState } from './enum/gameState';
import { NavbarComponent } from '@shared/components/navbar/navbar.component';
import { UserService } from '@service/user.service';

View file

@ -1,6 +1,6 @@
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
import { CommonModule } from '@angular/common';
import { GameState } from '../../../../../enum/gameState';
import { GameState } from '../../enum/gameState';
import { Card } from '@blackjack/models/blackjack.model';
import { GameControlsService } from '@blackjack/services/game-controls.service';

View file

@ -1,7 +1,7 @@
import { ChangeDetectionStrategy, Component, Input, Output, EventEmitter } from '@angular/core';
import { CommonModule, CurrencyPipe } from '@angular/common';
import { animate, style, transition, trigger } from '@angular/animations';
import { GameState } from '../../../../../enum/gameState';
import { GameState } from '../../enum/gameState';
@Component({
selector: 'app-game-result',

View file

@ -1,6 +1,6 @@
import { Injectable } from '@angular/core';
import { Card } from '../models/blackjack.model';
import { GameState } from '../../../../enum/gameState';
import { GameState } from '../enum/gameState';
@Injectable({
providedIn: 'root',