@bigbinary/neeto-icons 1.17.5 → 1.17.7
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 +13 -5
- package/dist/app-icons.cjs.js +2403 -2181
- package/dist/app-icons.cjs.js.map +1 -1
- package/dist/app-icons.js +2403 -2181
- package/dist/app-icons.js.map +1 -1
- package/dist/neeto-icons.cjs.js +3353 -1985
- package/dist/neeto-icons.cjs.js.map +1 -1
- package/dist/neeto-icons.js +3354 -1985
- package/dist/neeto-icons.js.map +1 -1
- package/dist/neeto-logos.cjs.js +1237 -1031
- package/dist/neeto-logos.cjs.js.map +1 -1
- package/dist/neeto-logos.js +1237 -1031
- package/dist/neeto-logos.js.map +1 -1
- package/dist/typeface-logos.cjs.js +1432 -938
- package/dist/typeface-logos.cjs.js.map +1 -1
- package/dist/typeface-logos.js +1432 -938
- package/dist/typeface-logos.js.map +1 -1
- package/index.d.ts +0 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,6 @@ React Native:
|
|
|
17
17
|
yarn add @bigbinary/neeto-icons-rn
|
|
18
18
|
```
|
|
19
19
|
|
|
20
|
-
|
|
21
20
|
### Usage
|
|
22
21
|
|
|
23
22
|
Web:
|
|
@@ -103,10 +102,13 @@ Anywhere in your React file
|
|
|
103
102
|
# Building and releasing.
|
|
104
103
|
|
|
105
104
|
The `@bigbinary/neeto-icons` and `@bigbinary/neeto-icons-rn` package gets published to NPM when we merge a PR
|
|
106
|
-
with `patch`, `minor` or `major` label to the `main` branch.
|
|
107
|
-
|
|
108
|
-
is used for
|
|
109
|
-
|
|
105
|
+
with `patch`, `minor` or `major` label to the `main` branch.
|
|
106
|
+
|
|
107
|
+
- `patch` label is used for bug fixes and new icons
|
|
108
|
+
- `minor` label is used for new features
|
|
109
|
+
- `major` label is used for breaking changes
|
|
110
|
+
|
|
111
|
+
You can checkout the `Create and publish releases` workflow in GitHub Actions to get a live update.
|
|
110
112
|
|
|
111
113
|
In case if you missed to add the label, you can manually publish the package.
|
|
112
114
|
For that first you need to create a PR to update the version number in the
|
|
@@ -121,3 +123,9 @@ Please note that before publishing the package, you need to verify the
|
|
|
121
123
|
functionality in some of the neeto web and mobile apps locally using `yalc` package
|
|
122
124
|
manager. The usage of yalc is explained in this video:
|
|
123
125
|
https://youtu.be/QBiYGP0Rhe0
|
|
126
|
+
|
|
127
|
+
### Steps to release
|
|
128
|
+
|
|
129
|
+
- Add/Update icons and bump the package version manually in `native/package.json`
|
|
130
|
+
- Create a Pull Request (PR)
|
|
131
|
+
- Assign the required label and merge the PR to main
|