654b297e2e
- 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>
62 lines
1.9 KiB
JavaScript
Executable File
62 lines
1.9 KiB
JavaScript
Executable File
#!/usr/bin/env node
|
|
|
|
import {createRequire as __cjsCompatRequire} from 'module';
|
|
const require = __cjsCompatRequire(import.meta.url);
|
|
|
|
import {
|
|
main,
|
|
readCommandLineAndConfiguration
|
|
} from "../../chunk-ERIHYHWB.js";
|
|
import {
|
|
EmitFlags
|
|
} from "../../chunk-VLDYFQRU.js";
|
|
import "../../chunk-XC6P36QJ.js";
|
|
import "../../chunk-YDQJH54W.js";
|
|
import "../../chunk-I2BHWRAU.js";
|
|
import {
|
|
setFileSystem
|
|
} from "../../chunk-GWZQLAGK.js";
|
|
import {
|
|
NodeJSFileSystem
|
|
} from "../../chunk-XYYEESKY.js";
|
|
import "../../chunk-G7GFT6BU.js";
|
|
|
|
// packages/compiler-cli/src/bin/ng_xi18n.ts
|
|
import "reflect-metadata";
|
|
|
|
// packages/compiler-cli/src/extract_i18n.js
|
|
import yargs from "yargs";
|
|
function mainXi18n(args2, consoleError = console.error) {
|
|
const config = readXi18nCommandLineAndConfiguration(args2);
|
|
return main(args2, consoleError, config, void 0, void 0, void 0);
|
|
}
|
|
function readXi18nCommandLineAndConfiguration(args2) {
|
|
const options = {};
|
|
const parsedArgs = yargs(args2).option("i18nFormat", { type: "string" }).option("locale", { type: "string" }).option("outFile", { type: "string" }).parseSync();
|
|
if (parsedArgs.outFile)
|
|
options.i18nOutFile = parsedArgs.outFile;
|
|
if (parsedArgs.i18nFormat)
|
|
options.i18nOutFormat = parsedArgs.i18nFormat;
|
|
if (parsedArgs.locale)
|
|
options.i18nOutLocale = parsedArgs.locale;
|
|
const config = readCommandLineAndConfiguration(args2, options, [
|
|
"outFile",
|
|
"i18nFormat",
|
|
"locale"
|
|
]);
|
|
return { ...config, emitFlags: EmitFlags.I18nBundle };
|
|
}
|
|
|
|
// packages/compiler-cli/src/bin/ng_xi18n.ts
|
|
process.title = "Angular i18n Message Extractor (ng-xi18n)";
|
|
var args = process.argv.slice(2);
|
|
setFileSystem(new NodeJSFileSystem());
|
|
process.exitCode = mainXi18n(args);
|
|
/**
|
|
* @license
|
|
* Copyright Google LLC All Rights Reserved.
|
|
*
|
|
* Use of this source code is governed by an MIT-style license that can be
|
|
* found in the LICENSE file at https://angular.dev/license
|
|
*/
|