@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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @runtypelabs/react-flow@0.3.56 build /home/runner/_work/core/core/packages/react-flow
2
+ > @runtypelabs/react-flow@0.3.58 build /home/runner/_work/core/core/packages/react-flow
3
3
  > tsup
4
4
 
5
5
  CLI Building entry: src/index.ts
@@ -10,7 +10,7 @@
10
10
  CLI Cleaning output folder
11
11
  CJS Build start
12
12
  ESM Build start
13
- CJS dist/index.js 105.55 KB
14
- CJS ⚡️ Build success in 317ms
15
13
  ESM dist/index.mjs 101.50 KB
16
- ESM ⚡️ Build success in 317ms
14
+ ESM ⚡️ Build success in 329ms
15
+ CJS dist/index.js 105.55 KB
16
+ CJS ⚡️ 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
@@ -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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/react-flow-example",
3
- "version": "0.0.104",
3
+ "version": "0.0.106",
4
4
  "private": true,
5
5
  "type": "module",
6
6
  "scripts": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@runtypelabs/react-flow",
3
- "version": "0.3.56",
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.2.2"
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": "tsc --noEmit --skipLibCheck"
62
+ "typecheck": "tsgo --noEmit --skipLibCheck"
63
63
  }
64
64
  }