@runtypelabs/react-flow 0.1.0 → 0.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/.turbo/turbo-build.log +18 -0
- package/CHANGELOG.md +17 -0
- package/README.md +2 -0
- package/dist/index.js +3249 -0
- package/dist/index.js.map +1 -0
- package/dist/index.mjs +3226 -0
- package/dist/index.mjs.map +1 -0
- package/example/node_modules/.bin/tsc +2 -2
- package/example/node_modules/.bin/tsserver +2 -2
- package/example/node_modules/.bin/vite +2 -2
- package/package.json +3 -3
- package/src/hooks/useRuntypeFlow.ts +1 -1
- package/src/types/index.ts +1 -1
- package/src/utils/adapter.ts +1 -1
- package/example/node_modules/.bin/browserslist +0 -21
- package/example/node_modules/.bin/terser +0 -21
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
|
|
2
|
+
> @runtypelabs/react-flow@0.1.2 build /home/runner/work/core/core/packages/react-flow
|
|
3
|
+
> tsup
|
|
4
|
+
|
|
5
|
+
[34mCLI[39m Building entry: src/index.ts
|
|
6
|
+
[34mCLI[39m Using tsconfig: tsconfig.json
|
|
7
|
+
[34mCLI[39m tsup v8.5.1
|
|
8
|
+
[34mCLI[39m Using tsup config: /home/runner/work/core/core/packages/react-flow/tsup.config.ts
|
|
9
|
+
[34mCLI[39m Target: es2020
|
|
10
|
+
[34mCLI[39m Cleaning output folder
|
|
11
|
+
[34mCJS[39m Build start
|
|
12
|
+
[34mESM[39m Build start
|
|
13
|
+
[32mESM[39m [1mdist/index.mjs [22m[32m100.52 KB[39m
|
|
14
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m224.25 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 1149ms
|
|
16
|
+
[32mCJS[39m [1mdist/index.js [22m[32m104.57 KB[39m
|
|
17
|
+
[32mCJS[39m [1mdist/index.js.map [22m[32m224.56 KB[39m
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 1150ms
|
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# @runtypelabs/react-flow
|
|
2
|
+
|
|
3
|
+
## 0.1.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- Updated dependencies [06ac26d]
|
|
9
|
+
- @runtypelabs/sdk@0.2.0
|
|
10
|
+
|
|
11
|
+
## 0.1.1
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 2eb58c6: Add official package badge to README
|
|
16
|
+
- Updated dependencies [2eb58c6]
|
|
17
|
+
- @runtypelabs/sdk@0.1.3
|
package/README.md
CHANGED
|
@@ -2,6 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
A React Flow adapter for building visual flow editors with Runtype. This package provides pre-built node components and hooks for creating, editing, and saving flows using the Runtype API.
|
|
4
4
|
|
|
5
|
+
> Official React Flow adapter published on npm
|
|
6
|
+
|
|
5
7
|
## Running the Example
|
|
6
8
|
|
|
7
9
|
From the monorepo root, run:
|