Skip to content

Commit be52d74

Browse files
committed
readme + CI filters
1 parent 19ac4de commit be52d74

File tree

5 files changed

+10
-1
lines changed

5 files changed

+10
-1
lines changed

.github/workflows/ci-examples.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
- "**.yml"
99
pull_request:
1010
branches: [main]
11+
paths-ignore:
12+
- "**/README.md"
1113
workflow_dispatch:
1214

1315
jobs:

.github/workflows/ci.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ on:
88
- "**.yml"
99
pull_request:
1010
branches: [main]
11+
paths-ignore:
12+
- "**/README.md"
1113
workflow_dispatch:
1214

1315
jobs:

.github/workflows/deploy-example.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@ name: Deploy examples to Pages
33
on:
44
push:
55
branches: ["main"]
6+
paths-ignore:
7+
- "**/README.md"
68
workflow_dispatch:
79

810
permissions:

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,4 +8,5 @@ Package.resolved
88
.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata
99
.netrc
1010
.vscode
11-
.devcontainer
11+
.devcontainer
12+
.swift-version

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ For embedded builds, a recent main or 6.2 snapshot with matching *Swift SDKs for
2828
- ~~dependencies on versioned packages (i.e., build without unsafe flags)~~
2929
- ~~fix DOM not child-diffing to preserve animations/nodes (the current solution based on `replaceChildren` will not work, it seems)~~
3030
- "model-bindings" for inputs (i.e., bind a @Binding<String> to a text box, or bind a @Binding<Bool> to a checkbox)
31+
- view value comparing (Equatable and/or memcmp if possible)
32+
- different handling of environment (individual reactivity needed)
3133
- transitions and animations (ideally CSS-based, probably svelte-like custom easing functions applied through WAAPI)
3234
- proper unit testing (once APIs firm up a bit more)
3335
- split out JavaScriptKit stuff in separate module to contain spread, maybe one day we can switch to faster interop somehow

0 commit comments

Comments
 (0)