hr-design-system-handlebars 1.11.4 → 1.11.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.
@@ -18,9 +18,9 @@ jobs:
18
18
  with:
19
19
  node-version: 16.x
20
20
  - name: install
21
- run: npm ci
21
+ run: yarn
22
22
  - name: create partials
23
- run: npm run partialsToJs
23
+ run: yarn partialsToJs
24
24
  - uses: chromaui/action@v1
25
25
  with:
26
26
  # 👇 Chromatic projectToken, refer to the manage page to obtain it.
@@ -189,7 +189,12 @@ export const parameters = {
189
189
  order: [
190
190
  'Einführung',
191
191
  'Grundlegendes',
192
- ['Konventionen und Datenstrukturen', 'Testdatenbereitstellung', '*'],
192
+ [
193
+ 'Installation und Update',
194
+ 'Konventionen und Datenstrukturen',
195
+ 'Testdatenbereitstellung',
196
+ '*',
197
+ ],
193
198
  'Komponenten',
194
199
  ['Page', 'Header', 'Teaser', 'grid', 'Label'],
195
200
  '*',
package/CHANGELOG.md CHANGED
@@ -1,3 +1,24 @@
1
+ # v1.11.5 (Wed Mar 29 2023)
2
+
3
+ #### 🐛 Bug Fix
4
+
5
+ - Topthemen: Mockup in Storybook DPE-1912 [#599](https://github.com/mumprod/hr-design-system-handlebars/pull/599) ([@vascoeduardo](https://github.com/vascoeduardo))
6
+
7
+ #### 🏠 Internal
8
+
9
+ - UPDATE: Updates storybook and all its dependencies [#596](https://github.com/mumprod/hr-design-system-handlebars/pull/596) ([@szuelch](https://github.com/szuelch))
10
+
11
+ #### 📝 Documentation
12
+
13
+ - DOC: Adds documentation for the installation and [#597](https://github.com/mumprod/hr-design-system-handlebars/pull/597) ([@szuelch](https://github.com/szuelch))
14
+
15
+ #### Authors: 2
16
+
17
+ - [@szuelch](https://github.com/szuelch)
18
+ - Vasco ([@vascoeduardo](https://github.com/vascoeduardo))
19
+
20
+ ---
21
+
1
22
  # v1.11.4 (Mon Mar 27 2023)
2
23
 
3
24
  #### 🐛 Bug Fix
package/README.md CHANGED
@@ -28,20 +28,20 @@ klonen. Danach in das Installationsverzeichnis wechseln und alle notwendigen
28
28
  npm Pakete mit dem Befehl
29
29
 
30
30
  ```
31
- npm ci
31
+ yarn
32
32
  ```
33
33
 
34
34
  installieren.
35
35
  Mit dem Befehl
36
36
 
37
37
  ```
38
- npm run storybook
38
+ yarn storybook
39
39
  ```
40
40
 
41
41
  kann das Designsystem lokal gestartet werden. Damit dieses immer mit den aktuellsten Daten arbeitet, muss in einem weiteren Terminalfenster zudem das Skript `optimize-assets` mit dem Befehl
42
42
 
43
43
  ```
44
- npm run optimize-assets
44
+ yarn optimize-assets
45
45
  ```
46
46
 
47
47
  gestartet werden. Dieses Skript erzeugt für die einzelnen Features JSON-Testdaten, optimiert im SVG-Format vorliegende Icons, erzeugt eine angepasste Version von Modernizr.js und stellt alle Handelbars-Templates als JS-Exporte zur Verfügung. Es läuft im Watch-Modus,
@@ -68,12 +68,12 @@ settings.json
68
68
  "workbench.action.terminal.focusPreviousPane",
69
69
  {
70
70
  "command": "workbench.action.terminal.sendSequence",
71
- "args": { "text": "npm run storybook\r" }
71
+ "args": { "text": "yarn storybook\r" }
72
72
  },
73
73
  "workbench.action.terminal.focusNextPane",
74
74
  {
75
75
  "command": "workbench.action.terminal.sendSequence",
76
- "args": { "text": "npm run optimize-assets\r" }
76
+ "args": { "text": "yarn optimize-assets\r" }
77
77
  }
78
78
  ]
79
79
  }
@@ -102,8 +102,8 @@ Makro hintereinander aus:
102
102
  2. Öffnen eines neuen Terminal Fensters
103
103
  3. Teilen des Terminal Fensters
104
104
  4. Setze den Fokus auf das linke Terminal Fenster
105
- 5. Setze den Befehl `npm run storybook` ab und führe ihn aus
105
+ 5. Setze den Befehl `yarn storybook` ab und führe ihn aus
106
106
  6. Setze den Fokus auf das rechte Terminal Fenster
107
- 7. Setze den Befehl `npm run optimize-assets` ab und führe ihn aus
107
+ 7. Setze den Befehl `yarn optimize-assets` ab und führe ihn aus
108
108
 
109
109
  Weitere Details und Grundlagen zum Gebrauch des Designsystems können direkt in dessen Dokumentation eingesehen werden.