-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into workers-types-docs
- Loading branch information
Showing
706 changed files
with
11,347 additions
and
32,404 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@sveltejs/adapter-node': patch | ||
--- | ||
|
||
chore: append http on listening address |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@sveltejs/kit': patch | ||
--- | ||
|
||
fix: correctly resolve hooks file when a similarly named directory exists |
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 was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,25 @@ permissions: | |
contents: read # to fetch code (actions/checkout) | ||
|
||
jobs: | ||
pkg-pr-new: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/[email protected] | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 22 | ||
cache: pnpm | ||
- run: pnpm install --frozen-lockfile | ||
- run: pnpx pkg-pr-new publish --comment=off ./packages/* | ||
lint-all: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v2.4.0 | ||
- uses: pnpm/action-setup@v4.0.0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: '18.x' | ||
node-version: 22 | ||
cache: pnpm | ||
- run: pnpm install --frozen-lockfile | ||
- run: pnpm run lint | ||
|
@@ -45,12 +56,15 @@ jobs: | |
- node-version: 20 | ||
os: ubuntu-latest | ||
e2e-browser: 'chromium' | ||
- node-version: 22 | ||
os: ubuntu-latest | ||
e2e-browser: 'chromium' | ||
env: | ||
KIT_E2E_BROWSER: ${{matrix.e2e-browser}} | ||
steps: | ||
- run: git config --global core.autocrlf false | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v2.4.0 | ||
- uses: pnpm/action-setup@v4.0.0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
@@ -59,6 +73,8 @@ jobs: | |
- run: pnpm playwright install ${{ matrix.e2e-browser }} | ||
- run: pnpm run sync-all | ||
- run: pnpm test:kit | ||
- name: Print flaky test report | ||
run: node scripts/print-flaky-test-report.js | ||
- name: Archive test results | ||
if: failure() | ||
shell: bash | ||
|
@@ -106,7 +122,7 @@ jobs: | |
steps: | ||
- run: git config --global core.autocrlf false | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v2.4.0 | ||
- uses: pnpm/action-setup@v4.0.0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
|
@@ -115,6 +131,8 @@ jobs: | |
- run: pnpm playwright install ${{ matrix.e2e-browser }} | ||
- run: pnpm run sync-all | ||
- run: pnpm test:cross-platform:${{ matrix.mode }} | ||
- name: Print flaky test report | ||
run: node scripts/print-flaky-test-report.js | ||
- name: Archive test results | ||
if: failure() | ||
shell: bash | ||
|
@@ -130,7 +148,7 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: pnpm/action-setup@v2.4.0 | ||
- uses: pnpm/action-setup@v4.0.0 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18 | ||
|
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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# https://github.com/sveltejs/svelte.dev/blob/main/apps/svelte.dev/scripts/sync-docs/README.md | ||
name: Docs preview create request | ||
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
dispatch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.SYNC_REQUEST_TOKEN }} | ||
repository: sveltejs/svelte.dev | ||
event-type: docs-preview-create | ||
client-payload: |- | ||
{ | ||
"package": "kit", | ||
"repo": "${{ github.repository }}", | ||
"owner": "${{ github.event.pull_request.head.repo.owner.login }}", | ||
"branch": "${{ github.event.pull_request.head.ref }}", | ||
"pr": ${{ github.event.pull_request.number }} | ||
} |
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 |
---|---|---|
@@ -0,0 +1,27 @@ | ||
# https://github.com/sveltejs/svelte.dev/blob/main/apps/svelte.dev/scripts/sync-docs/README.md | ||
name: Docs preview delete request | ||
|
||
on: | ||
pull_request_target: | ||
branches: | ||
- main | ||
types: [closed] | ||
|
||
jobs: | ||
dispatch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.SYNC_REQUEST_TOKEN }} | ||
repository: sveltejs/svelte.dev | ||
event-type: docs-preview-delete | ||
client-payload: |- | ||
{ | ||
"package": "kit", | ||
"repo": "${{ github.repository }}", | ||
"owner": "${{ github.event.pull_request.head.repo.owner.login }}", | ||
"branch": "${{ github.event.pull_request.head.ref }}", | ||
"pr": ${{ github.event.pull_request.number }} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# https://github.com/sveltejs/svelte.dev/blob/main/apps/svelte.dev/scripts/sync-docs/README.md | ||
name: Sync request | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
dispatch: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Repository Dispatch | ||
uses: peter-evans/repository-dispatch@v3 | ||
with: | ||
token: ${{ secrets.SYNC_REQUEST_TOKEN }} | ||
repository: sveltejs/svelte.dev | ||
event-type: sync-request | ||
client-payload: |- | ||
{ | ||
"package": "kit" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
{ | ||
"drips": { | ||
"ethereum": { | ||
"ownedBy": "0x99D414693dD65E4a0664a16D155dB66283A162D1" | ||
"ownedBy": "0xCE08E02c37d90d75C2bf7D9e55f7606C8DB80E70" | ||
} | ||
} | ||
} |
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.