Skip to content

Commit d58e445

Browse files
committed
Merge branch 'main' into throw-errors-in-react
2 parents af0316f + c1ac639 commit d58e445

500 files changed

Lines changed: 70993 additions & 31964 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.changeset/config.json

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,7 @@
55
"linked": [],
66
"access": "public",
77
"baseBranch": "main",
8-
"ignore": [
9-
"@xstate/immer",
10-
"@xstate/graph",
11-
"@xstate/inspect",
12-
"@xstate/solid",
13-
"@xstate/test"
14-
],
8+
"ignore": ["@xstate/immer", "@xstate/inspect"],
159
"___experimentalUnsafeOptions_WILL_CHANGE_IN_PATCH": {
1610
"onlyUpdatePeerDependentsWhenOutOfRange": true,
1711
"useCalculatedVersionForSnapshots": true

.codesandbox/ci.json

Lines changed: 0 additions & 10 deletions
This file was deleted.

.git-blame-ignore-revs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
# prettier formatting
2+
71183da18ae6b0b6b2e8f0c52ea9976232e54f41
3+
94037fe9c429839f0508ddcd287718b659276e3b
4+
f51bf4d8907307ace083a0decb34668176c7fad3

.github/FUNDING.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
github: davidkpiano
44
patreon: # Replace with a single Patreon username
5-
open_collective: xstate
5+
open_collective: xstate
66
ko_fi: # Replace with a single Ko-fi username
77
tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
88
community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
name: Bug Report
22
description: File a bug report
3-
title: "Bug: "
3+
title: 'Bug: '
44
labels: [bug, triage]
55
body:
66
- type: markdown

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: ✨ Feature Request
4-
url: https://github.com/statelyai/xstate/discussions/new
5-
about: Have an idea for a new feature or integration? Share it here!
4+
url: https://github.com/statelyai/xstate/discussions/new?category=ideas
5+
about: Propose new features or integrations to enhance XState's functionality.
66
- name: ❓ Ask a Question
7-
url: https://github.com/statelyai/xstate/discussions/new
8-
about: If you have any questions about how to do something in XState, ask it here.
7+
url: https://github.com/statelyai/xstate/discussions/new?category=q-a
8+
about: Need help with XState? Ask your questions and get support from the community.
9+
- name: 📖 Documentation
10+
url: https://github.com/statelyai/docs/issues/new
11+
about: Found a problem or have suggestions for improving our documentation? Let us know here.
12+
- name: 🛠️ Stately Studio
13+
url: https://github.com/statelyai/studio-issues/issues/new/choose
14+
about: Report issues or request features specific to Stately Studio.

.github/actions/ci-checks/action.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,3 +17,7 @@ runs:
1717
- name: Svelte Check
1818
run: yarn --cwd packages/xstate-svelte svelte-check
1919
shell: bash
20+
21+
- name: Knip
22+
run: yarn knip
23+
shell: bash

.github/actions/ci-setup/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ runs:
33
using: 'composite'
44
steps:
55
- name: Use Node.js 20.x
6-
uses: actions/setup-node@v3
6+
uses: actions/setup-node@v4
77
with:
88
node-version: 20.x
99

.github/workflows/docs.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,18 @@ jobs:
1313

1414
runs-on: ubuntu-latest
1515

16-
strategy:
17-
matrix:
18-
node-version: [16.x]
19-
2016
steps:
21-
- uses: actions/checkout@v3
17+
- uses: actions/checkout@v4
2218

23-
- uses: actions/setup-node@v3
19+
- uses: actions/setup-node@v4
2420
with:
25-
node-version: 16.x
21+
node-version: 20.x
2622

2723
- name: Build docs
2824
working-directory: docs
2925
run: |
3026
yarn install
31-
yarn docs:build
27+
NODE_OPTIONS='--openssl-legacy-provider' yarn docs:build
3228
3329
- name: Publish docs
3430
uses: JamesIves/github-pages-deploy-action@4.1.0

.github/workflows/nodejs.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ on:
1010
- '**'
1111

1212
permissions:
13-
contents: read # to fetch code (actions/checkout)
13+
contents: read # to fetch code (actions/checkout)
1414

1515
jobs:
1616
build:
@@ -19,6 +19,6 @@ jobs:
1919
runs-on: ubuntu-latest
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v4
2323
- uses: ./.github/actions/ci-setup
2424
- uses: ./.github/actions/ci-checks

0 commit comments

Comments
 (0)