@swifttui/build 0.6.3 → 0.7.1
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/README.md +8 -19
- 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
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
build.
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
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.
|
|
3
|
+
"version": "0.7.1",
|
|
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.
|
|
42
|
+
"@swifttui/web": "0.7.1"
|
|
43
43
|
},
|
|
44
44
|
"devDependencies": {
|
|
45
45
|
"@types/bun": "1.3.13"
|