AL

Alice Dudedji

Membre depuis March 2026

105 commande(s)
15,725 copie(s)
10 tag(s)

Configure le projet comme une Progressive Web App.

bash
ng add @angular/pwa

Installe et configure Angular Material UI.

bash
ng add @angular/material

Installe l'écosystème NgRx complet.

bash
npm install @ngrx/store @ngrx/effects @ngrx/entity @ngrx/store-devtools

Ajoute Riverpod avec son générateur de code.

bash
flutter pub add flutter_riverpod riverpod_annotation && flutter pub add --dev riverpod_generator build_runner

Génère un composant Blade sans fichier de vue séparé.

bash
php artisan make:component NomComponent --inline

Exécute les tests et génère un rapport de couverture lcov.info.

bash
flutter test --coverage

Génère un test unitaire PHPUnit.

bash
php artisan make:test NomTest --unit
Flutter Dart fix auto

Applique automatiquement les corrections suggérées par Dart.

bash
dart fix --apply

Installe Firebase Core et configure le projet avec FlutterFire.

bash
flutter pub add firebase_core && flutterfire configure

Exécute les tests en parallèle pour aller plus vite.

bash
php artisan test --parallel

Exécute les tests end-to-end configurés.

bash
ng e2e

Génère une classe Exception personnalisée.

bash
php artisan make:exception NomException

Analyse le code TypeScript avec ESLint.

bash
ng lint

Relance les tests à chaque modification de fichier.

bash
ng test --watch

Génère les fichiers d'environnement (Angular 15+).

bash
ng g environments

Génère un Controller sans les méthodes create et edit.

bash
php artisan make:controller Api/NomController --api

Génère un NgModule Angular.

bash
ng g module nom-module

Ajoute GoRouter pour la navigation déclarative.

bash
flutter pub add go_router

Ajoute Hive pour le stockage local léger et rapide.

bash
flutter pub add hive hive_flutter && flutter pub add --dev hive_generator build_runner

Génère un canal de broadcasting.

bash
php artisan make:channel NomChannel