-
-
Notifications
You must be signed in to change notification settings - Fork 203
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Bindable and Svelte 5 interop (#2336)
- $bindable() support, adjust language server to accomodate for weird error message types and binding shorthand rename - run Svelte 5 in CI - remove programmatic implicit children handling, it's handled within Svelte's component types by now - cannot bind to exports in runes mode
- Loading branch information
1 parent
4c8c0db
commit 957b8d6
Showing
94 changed files
with
1,589 additions
and
311 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,31 @@ jobs: | |
env: | ||
CI: true | ||
|
||
test-svelte5: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: "18.x" | ||
cache: pnpm | ||
|
||
# Lets us use one-liner JSON manipulations the package.json files | ||
- run: "npm install -g json" | ||
|
||
# Get projects set up | ||
- run: json -I -f package.json -e 'this.pnpm={"overrides":{"svelte":"^5.0.0-next.100"}}' | ||
- run: pnpm install --no-frozen-lockfile | ||
- run: pnpm bootstrap | ||
- run: pnpm build | ||
|
||
# Run any tests | ||
- run: pnpm test | ||
env: | ||
CI: true | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.