@swifttui/build 0.6.3 → 0.7.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/README.md +8 -19
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -76,25 +76,14 @@ Callers can override `swiftCommand`, `swiftSDK`, `configuration`,
76
76
 
77
77
  ## Developing this package
78
78
 
79
- > This section applies only to work **on** `@swifttui/build`. A project that
80
- > uses the package needs only the `npm install --save-dev` command above.
81
-
82
- Use Bun for the CLI, bundling, and tests. Use `swiftly` Swift 6.3.3 for the wasm
83
- build. Do not use bare `swift`.
84
-
85
- - `bun test`
86
- - `bun run build` — Compile the publishable package to `dist/` with tsdown.
87
- The output contains ESM `.js`, `.d.ts`, and the `swifttui-web` binary.
88
- `prepublishOnly` runs this command during publication.
89
- - `bun run build:manifest -- --app <AppExecutable>`
90
- - `bun run build:wasm -- --app <AppExecutable>`
91
-
92
- The full app pipeline (manifest + wasm) is exposed through the CLI:
93
-
94
- ```bash
95
- bun run cli.ts build --app <AppExecutable> # from source
96
- npx swifttui-web build --app <AppExecutable> # from the published bin
97
- ```
79
+ Development happens in the
80
+ [`swift-tui-web`](https://github.com/SwiftTUI/swift-tui-web) workspace, not
81
+ against the published tarball. The workspace commands and build pipeline are
82
+ documented in the repository's `docs/DEVELOPMENT.md` and
83
+ `packages/build/AGENTS.md`. The published CLI stays available as
84
+ `npx swifttui-web build --app <AppExecutable>`.
85
+
86
+ Full SwiftTUI API reference: <https://swifttui.sh/docs/documentation/>.
98
87
 
99
88
  ## License
100
89
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@swifttui/build",
3
- "version": "0.6.3",
3
+ "version": "0.7.0",
4
4
  "license": "MIT",
5
5
  "repository": {
6
6
  "type": "git",
@@ -39,7 +39,7 @@
39
39
  "access": "public"
40
40
  },
41
41
  "dependencies": {
42
- "@swifttui/web": "0.6.3"
42
+ "@swifttui/web": "0.7.0"
43
43
  },
44
44
  "devDependencies": {
45
45
  "@types/bun": "1.3.13"