@runtypelabs/react-flow 0.3.56 → 0.3.58
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 +16 -0
- package/example/CHANGELOG.md +17 -0
- package/example/package.json +1 -1
- package/package.json +3 -3
package/.turbo/turbo-build.log
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
|
|
2
|
-
> @runtypelabs/react-flow@0.3.
|
|
2
|
+
> @runtypelabs/react-flow@0.3.58 build /home/runner/_work/core/core/packages/react-flow
|
|
3
3
|
> tsup
|
|
4
4
|
|
|
5
5
|
[34mCLI[39m Building entry: src/index.ts
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
[34mCLI[39m Cleaning output folder
|
|
11
11
|
[34mCJS[39m Build start
|
|
12
12
|
[34mESM[39m Build start
|
|
13
|
-
[32mCJS[39m [1mdist/index.js [22m[32m105.55 KB[39m
|
|
14
|
-
[32mCJS[39m ⚡️ Build success in 317ms
|
|
15
13
|
[32mESM[39m [1mdist/index.mjs [22m[32m101.50 KB[39m
|
|
16
|
-
[32mESM[39m ⚡️ Build success in
|
|
14
|
+
[32mESM[39m ⚡️ Build success in 329ms
|
|
15
|
+
[32mCJS[39m [1mdist/index.js [22m[32m105.55 KB[39m
|
|
16
|
+
[32mCJS[39m ⚡️ Build success in 334ms
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @runtypelabs/react-flow
|
|
2
2
|
|
|
3
|
+
## 0.3.58
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [83d57ad]
|
|
8
|
+
- Updated dependencies [9ed5154]
|
|
9
|
+
- @runtypelabs/sdk@5.3.0
|
|
10
|
+
|
|
11
|
+
## 0.3.57
|
|
12
|
+
|
|
13
|
+
### Patch Changes
|
|
14
|
+
|
|
15
|
+
- 346f947: Run workspace type-checking on the TypeScript 7 native compiler (`tsgo`, from `@typescript/native-preview`). The per-package `typecheck` / `type-check` scripts now invoke `tsgo --noEmit` instead of `tsc --noEmit` (~5x faster across the workspace). This is a type-check-only change: `typescript` stays pinned at `^6.0.3` for builds, lint, and codegen — whose compiler-API consumers (tsup `.d.ts` emit, typescript-eslint, ts-morph) are not stable on the 7.x API until ~7.1 — so no package's runtime behavior or emitted types change. The `typecheck:native` benchmark harness is updated to stay version-agnostic (it derives the `tsc` baseline for `--compare`), `@typescript/native-preview` is bumped to the latest tracked build, and the orphaned `@runtypelabs/system-product-generator` package's stray `typescript@^5.9.3` pin is aligned to `^6.0.3`.
|
|
16
|
+
- Updated dependencies [346f947]
|
|
17
|
+
- @runtypelabs/sdk@5.2.3
|
|
18
|
+
|
|
3
19
|
## 0.3.56
|
|
4
20
|
|
|
5
21
|
### Patch Changes
|
package/example/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @runtypelabs/react-flow-example
|
|
2
2
|
|
|
3
|
+
## 0.0.106
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies [83d57ad]
|
|
8
|
+
- Updated dependencies [9ed5154]
|
|
9
|
+
- @runtypelabs/sdk@5.3.0
|
|
10
|
+
- @runtypelabs/react-flow@0.3.58
|
|
11
|
+
|
|
12
|
+
## 0.0.105
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- Updated dependencies [346f947]
|
|
17
|
+
- @runtypelabs/sdk@5.2.3
|
|
18
|
+
- @runtypelabs/react-flow@0.3.57
|
|
19
|
+
|
|
3
20
|
## 0.0.104
|
|
4
21
|
|
|
5
22
|
### Patch Changes
|
package/example/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@runtypelabs/react-flow",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.58",
|
|
4
4
|
"description": "React Flow adapter for building visual flow editors with Runtype",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"*.css"
|
|
17
17
|
],
|
|
18
18
|
"dependencies": {
|
|
19
|
-
"@runtypelabs/sdk": "5.
|
|
19
|
+
"@runtypelabs/sdk": "5.3.0"
|
|
20
20
|
},
|
|
21
21
|
"peerDependencies": {
|
|
22
22
|
"@xyflow/react": "^12.0.0",
|
|
@@ -59,6 +59,6 @@
|
|
|
59
59
|
"build": "tsup",
|
|
60
60
|
"dev": "tsup --watch",
|
|
61
61
|
"clean": "rm -rf dist",
|
|
62
|
-
"typecheck": "
|
|
62
|
+
"typecheck": "tsgo --noEmit --skipLibCheck"
|
|
63
63
|
}
|
|
64
64
|
}
|