@01-edu/shared 1.2.15 → 1.2.16

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@01-edu/shared",
3
- "version": "1.2.15",
3
+ "version": "1.2.16",
4
4
  "type": "module",
5
5
  "description": "",
6
6
  "scripts": {
@@ -1,19 +1,13 @@
1
1
  // because of the nature of esbuild we have to put the import string hard coded
2
2
  export const langTypeInfo = {
3
- go: {
4
- legacy: true,
5
- lang: 'go',
6
- load: () => import('@codemirror/legacy-modes/mode/go'),
7
- },
8
- sh: {
9
- legacy: true,
10
- lang: 'shell',
11
- load: () => import('@codemirror/legacy-modes/mode/shell'),
12
- },
3
+ go: { lang: 'go', load: () => import('@codemirror/lang-go') },
4
+ bash: { lang: 'bash', load: () => import('@fig/lezer-bash') },
5
+ sh: { lang: 'shell', load: () => import('@fig/lezer-bash') },
6
+ // The `label` is used for the UI (StatusBar) so it still shows "dart" instead of "javascript"
13
7
  dart: {
14
- lang: 'dart',
15
- legacy: true,
16
- load: () => import('@codemirror/legacy-modes/mode/clike'),
8
+ label: 'dart',
9
+ lang: 'javascript',
10
+ load: () => import('@codemirror/lang-javascript'),
17
11
  },
18
12
  css: { lang: 'css', load: () => import('@codemirror/lang-css') },
19
13
  html: { lang: 'html', load: () => import('@codemirror/lang-html') },
@@ -5,6 +5,16 @@ export const skillsSet = {
5
5
  description: 'Basics of computer programming',
6
6
  type: 'technical',
7
7
  },
8
+ 'intermediate-prog': {
9
+ name: 'Intermediate programming',
10
+ description: 'Intermediate notions of computer programming',
11
+ type: 'technical',
12
+ },
13
+ 'advanced-prog': {
14
+ name: 'Advanced programming',
15
+ description: 'Advanced notions of computer programming',
16
+ type: 'technical',
17
+ },
8
18
  algo: {
9
19
  name: 'Elementary algorithms',
10
20
  description: 'Problem-solving, algorithm design',