feat(planning): grille hebdomadaire complète avec API et filtres
- Connexion API via proxy Angular (résolution CORS, base path /api) - Import CSS ng-zorro global pour les modales et composants - Filtres Camion/Show câblés sur l'affichage de la grille - Camions affichés via TrucksService (linkés au show du même créneau) - Panneau de détails : spectacles + camions du jour sélectionné - Modale de création de spectacle stylisée avec fond et centrage - Positionnement précis des events à la minute dans leur créneau - Auto-scroll vers l'heure courante au chargement - Ligne "maintenant" sur la colonne du jour actuel - Régénération des services OpenAPI (nouveaux noms de types) Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
-8
@@ -1,4 +1,3 @@
|
||||
const { log } = require('proc-log')
|
||||
const { resolve, dirname, delimiter } = require('path')
|
||||
// the path here is relative, even though it does not need to be
|
||||
// in order to make the posix tests pass in windows
|
||||
@@ -15,13 +14,6 @@ const setPATH = (projectPath, binPaths, env) => {
|
||||
|
||||
const pathArr = []
|
||||
if (binPaths) {
|
||||
for (const bin of binPaths) {
|
||||
if (bin.includes(delimiter)) {
|
||||
const event = env.npm_lifecycle_event
|
||||
const context = event ? `"${event}" script` : 'script execution'
|
||||
log.warn('run-script', `Path contains delimiter ("${delimiter}"), ${context} may not behave as expected.`)
|
||||
}
|
||||
}
|
||||
pathArr.push(...binPaths)
|
||||
}
|
||||
// unshift the ./node_modules/.bin from every folder
|
||||
|
||||
+11
-10
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@npmcli/run-script",
|
||||
"version": "10.0.4",
|
||||
"version": "9.1.0",
|
||||
"description": "Run a lifecycle script for a package (descendant of npm-lifecycle)",
|
||||
"author": "GitHub Inc.",
|
||||
"license": "ISC",
|
||||
@@ -15,17 +15,18 @@
|
||||
"template-oss-apply": "template-oss-apply --force"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@npmcli/eslint-config": "^6.0.0",
|
||||
"@npmcli/template-oss": "4.29.0",
|
||||
"@npmcli/eslint-config": "^5.0.0",
|
||||
"@npmcli/template-oss": "4.24.1",
|
||||
"spawk": "^1.8.1",
|
||||
"tap": "^16.0.1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@npmcli/node-gyp": "^5.0.0",
|
||||
"@npmcli/package-json": "^7.0.0",
|
||||
"@npmcli/promise-spawn": "^9.0.0",
|
||||
"node-gyp": "^12.1.0",
|
||||
"proc-log": "^6.0.0"
|
||||
"@npmcli/node-gyp": "^4.0.0",
|
||||
"@npmcli/package-json": "^6.0.0",
|
||||
"@npmcli/promise-spawn": "^8.0.0",
|
||||
"node-gyp": "^11.0.0",
|
||||
"proc-log": "^5.0.0",
|
||||
"which": "^5.0.0"
|
||||
},
|
||||
"files": [
|
||||
"bin/",
|
||||
@@ -37,11 +38,11 @@
|
||||
"url": "git+https://github.com/npm/run-script.git"
|
||||
},
|
||||
"engines": {
|
||||
"node": "^20.17.0 || >=22.9.0"
|
||||
"node": "^18.17.0 || >=20.5.0"
|
||||
},
|
||||
"templateOSS": {
|
||||
"//@npmcli/template-oss": "This file is partially managed by @npmcli/template-oss. Edits may be overwritten.",
|
||||
"version": "4.29.0",
|
||||
"version": "4.24.1",
|
||||
"publish": "true"
|
||||
},
|
||||
"tap": {
|
||||
|
||||
Reference in New Issue
Block a user