Feat/workflow git #15

Merged
maxime.daniels merged 12 commits from dev into test 2026-08-03 22:31:11 +02:00
3 changed files with 467 additions and 217 deletions
Showing only changes of commit 5b0b2e1890 - Show all commits
+7
View File
@@ -0,0 +1,7 @@
import { describe, it, expect } from 'vitest';
describe('AEGIS Initial Test', () => {
it('devrait valider que 1 + 1 font 2', () => {
expect(1 + 1).toBe(2);
});
});
+17 -15
View File
@@ -7,35 +7,37 @@
"dev": "vite", "dev": "vite",
"build": "tsc -b && vite build", "build": "tsc -b && vite build",
"lint": "eslint .", "lint": "eslint .",
"preview": "vite preview" "preview": "vite preview",
"test": "vitest"
}, },
"dependencies": { "dependencies": {
"@tailwindcss/vite": "^4.3.3", "@tailwindcss/vite": "^4.3.3",
"@zitadel/react-auth": "^1.2.1", "@zitadel/react-auth": "^1.2.1",
"clsx": "^2.1.1", "clsx": "^2.1.1",
"lucide-react": "^1.27.0", "lucide-react": "^1.28.0",
"oidc-client-ts": "^3.5.0", "oidc-client-ts": "^3.5.0",
"otpauth": "^9.5.1", "otpauth": "^9.5.1",
"pocketbase": "^0.27.0", "pocketbase": "^0.27.1",
"qrcode.react": "^4.2.0", "qrcode.react": "^4.2.0",
"react": "^19.2.7", "react": "^19.2.8",
"react-dom": "^19.2.7", "react-dom": "^19.2.8",
"react-router-dom": "^7.18.1", "react-router-dom": "^7.18.2",
"tailwind-merge": "^3.6.0", "tailwind-merge": "^3.6.0",
"tailwindcss": "^4.3.3" "tailwindcss": "^4.3.3"
}, },
"devDependencies": { "devDependencies": {
"@eslint/js": "^10.0.1", "@eslint/js": "^10.0.1",
"@types/node": "^24.13.2", "@types/node": "^24.13.3",
"@types/react": "^19.2.17", "@types/react": "^19.2.18",
"@types/react-dom": "^19.2.3", "@types/react-dom": "^19.2.4",
"@vitejs/plugin-react": "^6.0.3", "@vitejs/plugin-react": "^6.0.5",
"eslint": "^10.6.0", "eslint": "^10.8.0",
"eslint-plugin-react-hooks": "^7.1.1", "eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-refresh": "^0.5.3", "eslint-plugin-react-refresh": "^0.5.3",
"globals": "^17.7.0", "globals": "^17.9.0",
"typescript": "~6.0.2", "typescript": "~6.0.3",
"typescript-eslint": "^8.62.0", "typescript-eslint": "^8.65.0",
"vite": "^8.1.1" "vite": "^8.2.0",
"vitest": "^4.1.10"
} }
} }
+443 -202
View File
File diff suppressed because it is too large Load Diff