fix: corriger les deux erreurs de build CI
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

- scripts/build-radar.js: bash → sh (Alpine n'a pas bash)
- radar-app/package.json: ajouter postcss comme dépendance directe
- radar-app/package-lock.json: régénéré avec postcss ^8.5.3

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
syoul
2026-03-19 18:51:49 +01:00
parent a2fbbe5d44
commit 658be24b7c
3 changed files with 32 additions and 1 deletions

View File

@@ -29,6 +29,7 @@
"marked": "^15.0.7",
"marked-highlight": "^2.2.1",
"next": "16.1.6",
"postcss": "^8.5.3",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.1.5",
"prettier": "^3.5.3",
@@ -8051,6 +8052,35 @@
"node": ">= 0.4"
}
},
"node_modules/postcss": {
"version": "8.5.8",
"resolved": "https://registry.npmjs.org/postcss/-/postcss-8.5.8.tgz",
"integrity": "sha512-OW/rX8O/jXnm82Ey1k44pObPtdblfiuWnrd8X7GJ7emImCOstunGbXUpp7HdBrFQX6rJzn3sPT397Wp5aCwCHg==",
"dev": true,
"funding": [
{
"type": "opencollective",
"url": "https://opencollective.com/postcss/"
},
{
"type": "tidelift",
"url": "https://tidelift.com/funding/github/npm/postcss"
},
{
"type": "github",
"url": "https://github.com/sponsors/ai"
}
],
"license": "MIT",
"dependencies": {
"nanoid": "^3.3.11",
"picocolors": "^1.1.1",
"source-map-js": "^1.2.1"
},
"engines": {
"node": "^10 || ^12 || >=14"
}
},
"node_modules/postcss-attribute-case-insensitive": {
"version": "7.0.1",
"resolved": "https://registry.npmjs.org/postcss-attribute-case-insensitive/-/postcss-attribute-case-insensitive-7.0.1.tgz",

View File

@@ -33,6 +33,7 @@
"marked": "^15.0.7",
"marked-highlight": "^2.2.1",
"next": "16.1.6",
"postcss": "^8.5.3",
"postcss-nested": "^7.0.2",
"postcss-preset-env": "^10.1.5",
"prettier": "^3.5.3",

View File

@@ -164,7 +164,7 @@ try {
// Modifier Navigation.tsx
const patchNavScript = path.join(CWD, 'docker', 'add_team_link.sh');
if (fs.existsSync(patchNavScript)) {
execSync(`bash ${patchNavScript}`, {
execSync(`sh ${patchNavScript}`, {
cwd: CWD,
stdio: 'inherit'
});