react-ui-suite 1.1.1 → 1.1.2
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 +5 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -24,7 +24,7 @@ This repository is a small monorepo that contains:
|
|
|
24
24
|
|
|
25
25
|
## Installation (for consumers)
|
|
26
26
|
|
|
27
|
-
Install from npm into any React
|
|
27
|
+
Install from npm into any React 19 project:
|
|
28
28
|
|
|
29
29
|
```bash
|
|
30
30
|
npm install react-ui-suite
|
|
@@ -36,8 +36,8 @@ yarn add react-ui-suite
|
|
|
36
36
|
|
|
37
37
|
Peer dependencies (required in the consuming app):
|
|
38
38
|
|
|
39
|
-
- `react` ^
|
|
40
|
-
- `react-dom` ^
|
|
39
|
+
- `react` ^19.2.4
|
|
40
|
+
- `react-dom` ^19.2.4
|
|
41
41
|
|
|
42
42
|
The library marks `react` and `react-dom` as externals; they must come from the host application.
|
|
43
43
|
|
|
@@ -57,7 +57,7 @@ Because the package is ESM-only, make sure your toolchain supports `import` / `e
|
|
|
57
57
|
|
|
58
58
|
## Development (this repo)
|
|
59
59
|
|
|
60
|
-
Clone and install from the root:
|
|
60
|
+
Clone and install from the root (Node 18+ required):
|
|
61
61
|
|
|
62
62
|
```bash
|
|
63
63
|
git clone https://github.com/nruimveld7/react-ui-suite.git
|
|
@@ -76,6 +76,7 @@ npm run lint # lints the library source via ESLint
|
|
|
76
76
|
npm run format # formats the entire repo with Prettier
|
|
77
77
|
npm run format:check # checks formatting without writing changes
|
|
78
78
|
npm run dev # starts the Vite demo gallery (demo/) at http://localhost:5173
|
|
79
|
+
npm run test:visual # runs Playwright visual tests for the demo gallery
|
|
79
80
|
npm run publish # publishes the react-ui-suite workspace to npm (see “Publishing” below)
|
|
80
81
|
```
|
|
81
82
|
|