scorer-ui-kit 2.8.3 → 2.9.0
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/README.md +9 -6
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -16,6 +16,9 @@
|
|
|
16
16
|
|
|
17
17
|
## Development
|
|
18
18
|
|
|
19
|
+
The version 2 is preferred to be run node version 18 and above due [Storybook 8 support requirement](https://github.com/storybookjs/storybook/blob/next/MIGRATION.md#dropping-support-for-nodejs-16).
|
|
20
|
+
|
|
21
|
+
|
|
19
22
|
If you want to run the project follow the next steps
|
|
20
23
|
|
|
21
24
|
- Clone repository
|
|
@@ -23,7 +26,7 @@ If you want to run the project follow the next steps
|
|
|
23
26
|
git clone git@github.com:future-standard/scorer-ui-kit.git
|
|
24
27
|
```
|
|
25
28
|
|
|
26
|
-
- Install with npm version
|
|
29
|
+
- Install with npm version 10 node 18 or above from the root folder
|
|
27
30
|
```
|
|
28
31
|
npm install
|
|
29
32
|
```
|
|
@@ -93,12 +96,12 @@ Please note however that the icon set included in this software is included unde
|
|
|
93
96
|
3. Push the tag to Github (this should cause the release)
|
|
94
97
|
|
|
95
98
|
```
|
|
96
|
-
// Updating to
|
|
99
|
+
// Updating to v2.5.2
|
|
97
100
|
|
|
98
|
-
git commit -m "Bump
|
|
101
|
+
git commit -m "Bump 2.5.2"
|
|
99
102
|
grep version package.json
|
|
100
|
-
~ "version": "
|
|
101
|
-
git tag
|
|
102
|
-
git push origin
|
|
103
|
+
~ "version": "2.5.2",
|
|
104
|
+
git tag v2.5.2
|
|
105
|
+
git push origin v2.5.2
|
|
103
106
|
```
|
|
104
107
|
|