-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(ts): Mise en place du typage dans fonctions JavaScript #3
Conversation
Suggestion de Christophe via Slack: Je suis d'accord. |
for consistency with current way of bundling
(prenom4_unite_legale || '') + ' ').trim() + '/' | ||
|
||
return(raison_sociale) | ||
function raison_sociale(denomination_unite_legale, nom_unite_legale, nom_usage_unite_legale, prenom1_unite_legale, prenom2_unite_legale, prenom3_unite_legale, prenom4_unite_legale) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ce fichier étant désormais généré par transpilation TypeScript depuis raison_sociale.ts
, son formattage est un peu différent.
Il serait idéal de ne plus stocker dans git les fichiers JS résultats de transpilation, mais à noter que les tests existants s'appuient sur jsc
pour tester ces fonctions, et donc sur leur format JS et non TS.
Première étape visant à rendre plus robuste le développement et l'exécution des fonctions JavaScript employées par le map-reduce de MongoDB, en typant puis transpilant ces fonctions à l'aide de TypeScript.
Pour tester la chaine de transpilation (provisoire):