@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 +8 -0
- package/README.md +26 -41
- package/lib/index.js +1 -1
- package/lib/index.js.map +1 -1
- package/lib/ui/src/tag/Tag.styles.d.ts +2 -2
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
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
|
|
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
|
-
##
|
|
34
|
-
|
|
35
|
-
|
|
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
|
-
|
|
74
|
-
|
|
57
|
+
```
|
|
58
|
+
$ yarn version --major | --minor | --patch
|
|
59
|
+
```
|
|
75
60
|
|
|
76
|
-
|
|
61
|
+
## Release new version
|
|
77
62
|
|
|
78
|
-
|
|
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
|
|