@bigbinary/neeto-team-members-frontend 2.5.2 → 2.5.3
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 +10 -4
- package/dist/index.cjs.js +399 -622
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.esm.js +334 -557
- package/dist/index.esm.js.map +1 -1
- package/package.json +24 -16
- package/types.d.ts +13 -28
package/README.md
CHANGED
|
@@ -12,13 +12,13 @@ functioning of the package. Install all the peer dependencies using the below
|
|
|
12
12
|
command:
|
|
13
13
|
|
|
14
14
|
```zsh
|
|
15
|
-
yarn add @bigbinary/neeto-icons@1.
|
|
15
|
+
yarn add @bigbinary/neeto-commons-frontend@2.0.24 @bigbinary/neeto-icons@1.9.1 @bigbinary/neetoui@4.1.43 @honeybadger-io/js@4.8.2 @honeybadger-io/react@4.8.2 axios@1.2.2 classnames@2.3.2 formik@2.2.9 ramda@0.28.0 react-helmet@6.1.0 react-query@3.39.2 react-router-dom@5.3.3 react-toastify@8.2.0 yup@0.32.11
|
|
16
16
|
```
|
|
17
17
|
|
|
18
18
|
2. Now install the latest **neetoTeamMembers** package using the below command:
|
|
19
19
|
|
|
20
20
|
```zsh
|
|
21
|
-
yarn add @bigbinary/neeto-team-members-frontend@2.5.
|
|
21
|
+
yarn add @bigbinary/neeto-team-members-frontend@2.5.3
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
## Usage
|
|
@@ -65,16 +65,22 @@ The configurations for the components present in this NPM package are given belo
|
|
|
65
65
|
|
|
66
66
|
1. Install all the dependencies by executing the following command
|
|
67
67
|
|
|
68
|
-
```
|
|
68
|
+
```sh
|
|
69
69
|
yarn install
|
|
70
70
|
```
|
|
71
71
|
|
|
72
|
-
2. See the changes in the example app by executing the following command:
|
|
72
|
+
2. See the changes in the example app by executing the following command (from existing seed data):
|
|
73
73
|
|
|
74
74
|
```zsh
|
|
75
75
|
yarn dev
|
|
76
76
|
```
|
|
77
77
|
|
|
78
|
+
or to see the changes by running the Rails Engine in parallel, execute the following command:
|
|
79
|
+
|
|
80
|
+
```sh
|
|
81
|
+
yarn start
|
|
82
|
+
```
|
|
83
|
+
|
|
78
84
|
## Building
|
|
79
85
|
|
|
80
86
|
The neetoTeamMembers package gets published to NPM only when we add the `release` label to the PR.
|