@proprioo/salatim 35.0.0 → 35.2.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/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  ## Changelog
2
2
 
3
+ **35.2.0**
4
+
5
+ * Feat(Phone): add Ukraine
6
+
7
+ **35.1.0**
8
+
9
+ * Chore: bump packages
10
+
3
11
  **35.0.0**
4
12
 
5
13
  * Feat(Phone): add Ivory Coast, China and Equatorial Guinea
package/README.md CHANGED
@@ -6,7 +6,7 @@ Please have a look on its storybook for each components.
6
6
 
7
7
  ## Before
8
8
 
9
- Don't forget to add an empty npm token in your bash_profile, zsh, etc.. and reload it.
9
+ Don't forget to add an empty NPM_TOKEN in your bash_profile, zsh, etc.. and reload it.
10
10
 
11
11
  ```
12
12
  export NPM_TOKEN=''
@@ -30,52 +30,37 @@ export NPM_TOKEN=''
30
30
 
31
31
  Use `yarn dev`
32
32
 
33
- ## Internal packages dependencies
34
-
35
- - forms
36
- - ui
37
- - InputBase
38
- - InputType
39
- - phone
40
- - isValidPhoneNumber
41
- - Phone
42
- - utils
43
- - colors
44
- - fonts
45
- - Line
46
- - Row
47
- - phone
48
- - ui
49
- - InputBase
50
- - InputBaseProps
51
- - InputType
52
- - InputProps
53
- - MockForm
54
- - BaseLayout
55
- - date
56
- - utils
57
- - color
58
- - GenericInputProps
59
- - ui
60
- - InputBase
61
- - energy
62
- - utils
63
- - colors
64
- - paragraphs
65
- - utils
66
- - ui
67
- - utils (all)
33
+ ## How to build ?
34
+
35
+ Use `yarn build`
68
36
 
69
37
  ## Update version
70
38
 
71
- Before each change, please update `CHANGELOG.md` with a new version.
39
+ Before each change, please update `CHANGELOG.md` with a new version using the following template:
40
+
41
+ ```markdown
42
+ **major.minor.patch**
43
+
44
+ * Commit message
45
+
46
+ OR
47
+
48
+ **BREAKING CHANGE** Commit message
49
+ ```
50
+
51
+ - Fix: **patch**
52
+ - Component / Feature: **minor**
53
+ - Everything which can bring changes in the different projects: **major**
54
+
55
+ When changelog is updated, don't forget to bump the `package.json` version with:
72
56
 
73
- - Fix : patch
74
- - Component/feature : minor
57
+ ```
58
+ $ yarn version --major | --minor | --patch
59
+ ```
75
60
 
76
- when changelog is updated, dont forget to update npm :
61
+ ## Release new version
77
62
 
78
- `npm version [patch | minor]`
63
+ Pushing a new version in the `master` branch automatically trigger a new release of the NPM package.
79
64
 
80
65
  ## Backport a fix
81
66