@tanstack/create 0.67.0 → 0.68.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/package.json +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @tanstack/create
2
2
 
3
+ ## 0.68.0
4
+
5
+ ### Minor Changes
6
+
7
+ - feat(create): add React PowerSync scaffolding add-on ([#448](https://github.com/TanStack/cli/pull/448))
8
+
9
+ `tanstack add powersync` (or `--add-ons powersync` on `tanstack create`)
10
+ wires the PowerSync Web SDK into a React TanStack Start app:
11
+
12
+ - `@powersync/web` + `@powersync/react` + `@journeyapps/wa-sqlite`
13
+ dependencies and a Vite plugin that excludes `@powersync/web` from
14
+ `optimizeDeps` and emits ES-module workers (required for the
15
+ WA-SQLite VFS).
16
+ - A `PowerSyncProvider` integration that opens a WA-SQLite database
17
+ and connects with `disableSSRWarning` so SSR doesn't warn.
18
+ - A sample `AppSchema` (todos table) and `BackendConnector` with
19
+ `fetchCredentials` reading `VITE_POWERSYNC_URL` / `VITE_POWERSYNC_TOKEN`
20
+ from `.env.local` and a stubbed `uploadData()` ready for the user's
21
+ upstream write logic.
22
+ - A `/demo/powersync` route that inserts rows locally and renders
23
+ live `useQuery` results plus connection status, so the scaffold
24
+ works zero-config and shows the SDK is wired up before any
25
+ PowerSync instance is configured.
26
+
3
27
  ## 0.67.0
4
28
 
5
29
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/create",
3
- "version": "0.67.0",
3
+ "version": "0.68.0",
4
4
  "description": "TanStack Application Builder Engine",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",