1.2.7 - Set react version range in peer dependencies.
parent
90f934671b
commit
e06959e584
|
@ -10,7 +10,7 @@ This package uses [tuitio-client](https://lab.code-rove.com/gitea/bricks/tuitio-
|
|||
|
||||
The package installation can be done in two ways:
|
||||
|
||||
- from the command line: `npm install @flare/tuitio-client-react@1.0.0`
|
||||
- from the command line: `npm install @flare/tuitio-client-react`
|
||||
- from the package.json file: `"@flare/tuitio-client-react": "1.0.0"`
|
||||
|
||||
## How to use the package
|
||||
|
@ -45,3 +45,4 @@ All tests in the package can be executed by running: `npm test`.
|
|||
1.2.4 - Upgraded @flare/tuitio-client.
|
||||
1.2.5 - Upgraded @flare/tuitio-client.
|
||||
1.2.6 - Removed specific user groups and roles. Records must be dynamic.
|
||||
1.2.7 - Set react version range in peer dependencies.
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "@flare/tuitio-client-react",
|
||||
"version": "1.2.6",
|
||||
"version": "1.2.7",
|
||||
"lockfileVersion": 2,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "@flare/tuitio-client-react",
|
||||
"version": "1.2.6",
|
||||
"version": "1.2.7",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@flare/js-utils": "^1.1.0",
|
||||
|
@ -34,7 +34,7 @@
|
|||
"typescript": "^4.9.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^16.14.0"
|
||||
"react": ">=16.14.0 <19.0.0"
|
||||
}
|
||||
},
|
||||
"node_modules/@ampproject/remapping": {
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@flare/tuitio-client-react",
|
||||
"version": "1.2.6",
|
||||
"version": "1.2.7",
|
||||
"description": "Tuitio client react is an npm package written in typescript that facilitates the integration of a react application with Tuitio.",
|
||||
"main": "./dist/cjs/index.js",
|
||||
"module": "./dist/esm/index.js",
|
||||
|
@ -52,7 +52,7 @@
|
|||
"@flare/tuitio-client": "^1.2.5"
|
||||
},
|
||||
"peerDependencies": {
|
||||
"react": "^16.14.0"
|
||||
"react": ">=16.14.0 <19.0.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@testing-library/react": "^12.1.5",
|
||||
|
|
Loading…
Reference in New Issue