@vleap/warps-react 0.1.0-beta.185 → 0.1.0-beta.187
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/.turbo/turbo-build.log +3 -3
- package/.turbo/turbo-lint.log +5 -0
- package/.turbo/turbo-test.log +2 -2
- package/CHANGELOG.md +16 -0
- package/README.md +29 -0
- package/package.json +2 -2
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
> @vleap/warps-react@0.1.0-beta.
|
|
3
|
+
> @vleap/warps-react@0.1.0-beta.187 build
|
|
4
4
|
> tsup src/index.ts --format esm --dts --minify
|
|
5
5
|
|
|
6
6
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -11,7 +11,7 @@
|
|
|
11
11
|
[34mCLI[39m Cleaning output folder
|
|
12
12
|
[34mESM[39m Build start
|
|
13
13
|
[32mESM[39m [1mdist/index.mjs [22m[32m0 B[39m
|
|
14
|
-
[32mESM[39m ⚡️ Build success in
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 20ms
|
|
15
15
|
DTS Build start
|
|
16
|
-
DTS ⚡️ Build success in
|
|
16
|
+
DTS ⚡️ Build success in 3773ms
|
|
17
17
|
DTS dist/index.d.ts 13.00 B
|
package/.turbo/turbo-lint.log
CHANGED
package/.turbo/turbo-test.log
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @vleap/warps-react
|
|
2
2
|
|
|
3
|
+
## 0.1.0-beta.187
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [0016189]
|
|
8
|
+
- Updated dependencies [57685fc]
|
|
9
|
+
- @vleap/warps@3.0.0-beta.189
|
|
10
|
+
|
|
11
|
+
## 0.1.0-beta.186
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- Updated dependencies [d1393e9]
|
|
16
|
+
- Updated dependencies [aa0d529]
|
|
17
|
+
- @vleap/warps@3.0.0-beta.188
|
|
18
|
+
|
|
3
19
|
## 0.1.0-beta.185
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
# @vleap/warps-react
|
|
2
|
+
|
|
3
|
+
React integration for the Warps SDK. Provides React hooks and components for building Warp-enabled applications.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install @vleap/warps-react
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Prerequisites
|
|
12
|
+
|
|
13
|
+
- React 18.0.0 or higher
|
|
14
|
+
- `@vleap/warps` core package
|
|
15
|
+
|
|
16
|
+
## Status
|
|
17
|
+
|
|
18
|
+
⚠️ **Note**: This package is currently under development. The React integration API is being finalized.
|
|
19
|
+
|
|
20
|
+
## Features
|
|
21
|
+
|
|
22
|
+
- React hooks for Warp execution
|
|
23
|
+
- Component integration
|
|
24
|
+
- TypeScript support
|
|
25
|
+
- Seamless integration with Warps SDK
|
|
26
|
+
|
|
27
|
+
## Documentation
|
|
28
|
+
|
|
29
|
+
For detailed React integration examples, visit [docs.vleap.ai](https://docs.vleap.ai).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vleap/warps-react",
|
|
3
|
-
"version": "0.1.0-beta.
|
|
3
|
+
"version": "0.1.0-beta.187",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"types": "./src/index.tsx",
|
|
6
6
|
"exports": {
|
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
"test": "npm run lint"
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@vleap/warps": "3.0.0-beta.
|
|
20
|
+
"@vleap/warps": "3.0.0-beta.189"
|
|
21
21
|
},
|
|
22
22
|
"peerDependencies": {
|
|
23
23
|
"react": ">=18.0.0",
|