@01-edu/shared 1.1.4 → 1.1.5
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/package.json +1 -1
- package/skill-definitions.js +12 -0
package/package.json
CHANGED
package/skill-definitions.js
CHANGED
|
@@ -242,6 +242,12 @@ export const skillsSet = {
|
|
|
242
242
|
name: 'Git',
|
|
243
243
|
type: 'technology',
|
|
244
244
|
},
|
|
245
|
+
|
|
246
|
+
// employability
|
|
247
|
+
employability: {
|
|
248
|
+
name: 'Employability',
|
|
249
|
+
type: 'employability',
|
|
250
|
+
},
|
|
245
251
|
}
|
|
246
252
|
|
|
247
253
|
export const skillTiers = [
|
|
@@ -269,6 +275,12 @@ export const skillTypes = [
|
|
|
269
275
|
description:
|
|
270
276
|
'Technologies gather the different programming languages, frameworks and platforms acquired from projects & piscines.',
|
|
271
277
|
},
|
|
278
|
+
{
|
|
279
|
+
type: 'employability',
|
|
280
|
+
name: 'Employability',
|
|
281
|
+
description:
|
|
282
|
+
'Develops professional readiness through personal branding, digital presence, and job search strategies—including portfolio building, CV writing, and effective networking.',
|
|
283
|
+
},
|
|
272
284
|
]
|
|
273
285
|
|
|
274
286
|
export const hasRequiredSkills = (requiredSkills, userSkills) =>
|