feat: ✨ Created a mini nodeJS server with NewMan for testing without PostMan GUI.
This will mimic a run in a CD/CI environment or docker container.
This commit is contained in:
4
node_modules/faker/lib/locales/fr/date/index.js
generated
vendored
Normal file
4
node_modules/faker/lib/locales/fr/date/index.js
generated
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
var date = {};
|
||||
module["exports"] = date;
|
||||
date.month = require("./month");
|
||||
date.weekday = require("./weekday");
|
63
node_modules/faker/lib/locales/fr/date/month.js
generated
vendored
Normal file
63
node_modules/faker/lib/locales/fr/date/month.js
generated
vendored
Normal file
@@ -0,0 +1,63 @@
|
||||
// Source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/en.xml#L1799
|
||||
module['exports'] = {
|
||||
wide: [
|
||||
'janvier',
|
||||
'février',
|
||||
'mars',
|
||||
'avril',
|
||||
'mai',
|
||||
'juin',
|
||||
'juillet',
|
||||
'août',
|
||||
'septembre',
|
||||
'octobre',
|
||||
'novembre',
|
||||
'décembre',
|
||||
],
|
||||
// Property "wide_context" is optional, if not set then "wide" will be used instead
|
||||
// It is used to specify a word in context, which may differ from a stand-alone word
|
||||
wide_context: [
|
||||
'janvier',
|
||||
'février',
|
||||
'mars',
|
||||
'avril',
|
||||
'mai',
|
||||
'juin',
|
||||
'juillet',
|
||||
'août',
|
||||
'septembre',
|
||||
'octobre',
|
||||
'novembre',
|
||||
'décembre',
|
||||
],
|
||||
abbr: [
|
||||
'janv.',
|
||||
'févr.',
|
||||
'mars',
|
||||
'avril',
|
||||
'mai',
|
||||
'juin',
|
||||
'juil.',
|
||||
'août',
|
||||
'sept.',
|
||||
'oct.',
|
||||
'nov.',
|
||||
'déc.',
|
||||
],
|
||||
// Property "abbr_context" is optional, if not set then "abbr" will be used instead
|
||||
// It is used to specify a word in context, which may differ from a stand-alone word
|
||||
abbr_context: [
|
||||
'janv.',
|
||||
'févr.',
|
||||
'mars',
|
||||
'avril',
|
||||
'mai',
|
||||
'juin',
|
||||
'juil.',
|
||||
'août',
|
||||
'sept.',
|
||||
'oct.',
|
||||
'nov.',
|
||||
'déc.',
|
||||
],
|
||||
};
|
43
node_modules/faker/lib/locales/fr/date/weekday.js
generated
vendored
Normal file
43
node_modules/faker/lib/locales/fr/date/weekday.js
generated
vendored
Normal file
@@ -0,0 +1,43 @@
|
||||
// Source: http://unicode.org/cldr/trac/browser/tags/release-27/common/main/en.xml#L1847
|
||||
module["exports"] = {
|
||||
wide: [
|
||||
"Dimanche",
|
||||
"Lundi",
|
||||
"Mardi",
|
||||
"Mercredi",
|
||||
"Jeudi",
|
||||
"Vendredi",
|
||||
"Samedi"
|
||||
],
|
||||
// Property "wide_context" is optional, if not set then "wide" will be used instead
|
||||
// It is used to specify a word in context, which may differ from a stand-alone word
|
||||
wide_context: [
|
||||
"Dimanche",
|
||||
"Lundi",
|
||||
"Mardi",
|
||||
"Mercredi",
|
||||
"Jeudi",
|
||||
"Vendredi",
|
||||
"Samedi"
|
||||
],
|
||||
abbr: [
|
||||
"Dim",
|
||||
"Lun",
|
||||
"Mar",
|
||||
"Mer",
|
||||
"Jeu",
|
||||
"Ven",
|
||||
"Sam"
|
||||
],
|
||||
// Property "abbr_context" is optional, if not set then "abbr" will be used instead
|
||||
// It is used to specify a word in context, which may differ from a stand-alone word
|
||||
abbr_context: [
|
||||
"Dim",
|
||||
"Lun",
|
||||
"Mar",
|
||||
"Mer",
|
||||
"Jeu",
|
||||
"Ven",
|
||||
"Sam"
|
||||
]
|
||||
};
|
Reference in New Issue
Block a user