swissdev-tech-tags 0.0.155 → 0.0.156
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +1 -1
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -460,6 +460,7 @@ const getPerkTagsWithSiteSpecificTags = (siteName) => {
|
|
|
460
460
|
de: { ...perkTagsTranslated.de, ...thisSiteTags.de },
|
|
461
461
|
fr: { ...perkTagsTranslated.fr, ...thisSiteTags.fr },
|
|
462
462
|
ro: { ...perkTagsTranslated.ro, ...thisSiteTags.ro },
|
|
463
|
+
nl: { ...perkTagsTranslated.nl, ...thisSiteTags.nl },
|
|
463
464
|
}
|
|
464
465
|
}
|
|
465
466
|
return perkTagsTranslated
|
|
@@ -485,7 +486,6 @@ const extractTechTagsFrom = (jobForm, techTags) => {
|
|
|
485
486
|
jobForm.technologies && jobForm.technologies.forEach(tech => { if (tech.toLowerCase() === lowCaseTechTag) foundTechTags.add(techTag) })
|
|
486
487
|
if (jobForm.techCategory && jobForm.techCategory.toLowerCase() === lowCaseTechTag) foundTechTags.add(techTag)
|
|
487
488
|
})
|
|
488
|
-
if (jobForm.techCategory === "Dev-Ops") foundTechTags.add("DevOps")
|
|
489
489
|
if (jobForm.techCategory === "UI-UX-Designer") foundTechTags.add("UX UI Design")
|
|
490
490
|
const name = jobForm.name && jobForm.name.toLowerCase() || ""
|
|
491
491
|
if (name.includes('fullstack') || name.includes('full-stack') || name.includes('full stack')) foundTechTags.add("Fullstack")
|