@runtypelabs/react-flow 0.1.2 → 0.1.3
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 +4 -4
- package/CHANGELOG.md +8 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -3
- package/src/flow-step-types.ts +32 -0
- package/src/hooks/useRuntypeFlow.ts +1 -1
- package/src/types/index.ts +1 -1
- package/src/utils/adapter.ts +1 -1
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @runtypelabs/react-flow@0.1.
|
|
2
|
+
> @runtypelabs/react-flow@0.1.3 build /home/runner/work/core/core/packages/react-flow
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -11,8 +11,8 @@
|
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
12
|
[34mESM[39m Build start
|
|
13
13
|
[32mESM[39m [1mdist/index.mjs [22m[32m100.52 KB[39m
|
|
14
|
-
[32mESM[39m [1mdist/index.mjs.map [22m[32m224.
|
|
15
|
-
[32mESM[39m ⚡️ Build success in
|
|
14
|
+
[32mESM[39m [1mdist/index.mjs.map [22m[32m224.24 KB[39m
|
|
15
|
+
[32mESM[39m ⚡️ Build success in 2197ms
|
|
16
16
|
[32mCJS[39m [1mdist/index.js [22m[32m104.57 KB[39m
|
|
17
17
|
[32mCJS[39m [1mdist/index.js.map [22m[32m224.56 KB[39m
|
|
18
|
-
[32mCJS[39m ⚡️ Build success in
|
|
18
|
+
[32mCJS[39m ⚡️ Build success in 2197ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @runtypelabs/react-flow
|
|
2
2
|
|
|
3
|
+
## 0.1.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 8506aa1: Remove private @runtypelabs/shared dependency from all public packages by inlining types and constants. This fixes npm installation errors where users couldn't install packages due to the unpublished internal shared package dependency.
|
|
8
|
+
- Updated dependencies [8506aa1]
|
|
9
|
+
- @runtypelabs/sdk@0.2.1
|
|
10
|
+
|
|
3
11
|
## 0.1.2
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|