Amélioration de la pipeline
parent
4b5e21a1
No related branches found
No related tags found
Showing
- .gitlab-ci.yml 48 additions, 0 deletions.gitlab-ci.yml
- nuxt.config.ts 5 additions, 1 deletionnuxt.config.ts
- package-lock.json 711 additions, 1 deletionpackage-lock.json
- package.json 8 additions, 3 deletionspackage.json
- utils/mapper/UserMapper.test.ts 5 additions, 0 deletionsutils/mapper/UserMapper.test.ts
- vitest.config.ts 11 additions, 0 deletionsvitest.config.ts
This diff is collapsed.
... | ... | @@ -6,11 +6,12 @@ |
"build": "node_modules/.bin/nuxt build", | ||
"dev": "node_modules/.bin/nuxt dev", | ||
"generate": "node_modules/.bin/nuxt generate", | ||
"lint": "eslint .", | ||
"lint": "node_modules/.bin/eslint .", | ||
"postinstall": "node_modules/.bin/nuxt prepare", | ||
"preview": "node_modules/.bin/nuxt preview", | ||
"prod": " node .output/server/index.mjs", | ||
"start": "node_modules/.bin/nuxt start" | ||
"start": "node_modules/.bin/nuxt start", | ||
"test": "node_modules/.bin/vitest run --passWithNoTests" | ||
}, | ||
"dependencies": { | ||
"@iconify-json/material-symbols": "^1.2.12", | ||
... | ... | @@ -23,6 +24,10 @@ |
"vue-router": "latest" | ||
}, | ||
"devDependencies": { | ||
"typescript": "^5.7.3" | ||
"@nuxt/test-utils": "^3.15.4", | ||
"@vue/test-utils": "^2.4.6", | ||
"happy-dom": "^16.7.1", | ||
"typescript": "^5.7.3", | ||
"vitest": "^3.0.3" | ||
} | ||
} |
utils/mapper/UserMapper.test.ts
0 → 100644
vitest.config.ts
0 → 100644
Please register or sign in to comment