@refinedev/devtools 1.1.26 → 1.1.28
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 +4 -3
- package/package.json +3 -3
package/README.md
CHANGED
|
@@ -7,12 +7,14 @@
|
|
|
7
7
|
<div align="center">refine is an open-source, headless React framework for developers building enterprise web applications.
|
|
8
8
|
|
|
9
9
|
It eliminates repetitive tasks in CRUD operations and provides industry-standard solutions for critical project components like **authentication**, **access control**, **routing**, **networking**, **state management**, and **i18n**.
|
|
10
|
+
|
|
10
11
|
</div>
|
|
11
12
|
|
|
12
13
|
---
|
|
14
|
+
|
|
13
15
|

|
|
14
16
|
|
|
15
|
-
|
|
17
|
+
We're releasing refine devtools in beta. refine devtools is designed to help you debug and develop your refine apps. It will be a collection of features including monitoring queries and mutations, testing out inferencer generated codes, adding and updating refine packages from the UI and more. 🤯
|
|
16
18
|
|
|
17
19
|
## Usage
|
|
18
20
|
|
|
@@ -27,12 +29,11 @@ Install `@refinedev/devtools` with `@refinedev/cli`
|
|
|
27
29
|
```bash
|
|
28
30
|
npm run refine devtools init
|
|
29
31
|
```
|
|
32
|
+
|
|
30
33
|
> 🚨 If you don't have `@refinedev/cli` installed already, you can follow the [installation guide](https://refine.dev/docs/packages/documentation/cli/#how-to-add-to-an-existing-project) to add it to your project.
|
|
31
34
|
|
|
32
35
|

|
|
33
36
|
|
|
34
|
-
|
|
35
|
-
|
|
36
37
|
Ta-da! 🎉 Everything is ready now, you can use the refine devtools in your project! 🕶
|
|
37
38
|
|
|
38
39
|
> Devtools only works in development mode and have no overhead on production builds. You don't need to do anything special to exclude DevTools from your bundle.
|
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "1.1.
|
|
2
|
+
"version": "1.1.28",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"main": "dist/index.js",
|
|
5
5
|
"typings": "dist/index.d.ts",
|
|
@@ -34,8 +34,8 @@
|
|
|
34
34
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
35
35
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
36
36
|
"@types/react-dom": "^17.0.0 || ^18.0.0",
|
|
37
|
-
"@refinedev/devtools-server": "1.1.
|
|
38
|
-
"@refinedev/cli": "2.16.
|
|
37
|
+
"@refinedev/devtools-server": "1.1.22",
|
|
38
|
+
"@refinedev/cli": "2.16.20",
|
|
39
39
|
"@refinedev/core": "^4.42.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|