Skip to content

Commit 3105c94

Browse files
committed
Merge branch 'master' into beta
2 parents 9416f26 + a1fcebd commit 3105c94

File tree

1,829 files changed

+20581
-19681
lines changed

Some content is hidden

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

1,829 files changed

+20581
-19681
lines changed

.codesandbox/ci.json

Lines changed: 15 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -1,28 +1,29 @@
11
{
22
"packages": ["packages/*", "targets/*"],
33
"sandboxes": [
4+
"/demo/src/sandboxes/animating-auto",
45
"/demo/src/sandboxes/card",
5-
"/demo/src/sandboxes/goo-blobs",
6-
"/demo/src/sandboxes/flip-card",
7-
"/demo/src/sandboxes/slide",
8-
"/demo/src/sandboxes/draggable-list",
96
"/demo/src/sandboxes/cards-stack",
10-
"/demo/src/sandboxes/viewpager",
11-
"/demo/src/sandboxes/simple-transition",
7+
"/demo/src/sandboxes/chain",
8+
"/demo/src/sandboxes/css-keyframes",
9+
"/demo/src/sandboxes/draggable-list",
10+
"/demo/src/sandboxes/exit-before-enter",
11+
"/demo/src/sandboxes/flip-card",
12+
"/demo/src/sandboxes/goo-blobs",
1213
"/demo/src/sandboxes/image-fade",
1314
"/demo/src/sandboxes/list-reordering",
1415
"/demo/src/sandboxes/masonry",
15-
"/demo/src/sandboxes/animating-auto",
1616
"/demo/src/sandboxes/multistage-transition",
17-
"/demo/src/sandboxes/chain",
18-
"/demo/src/sandboxes/train",
19-
"/demo/src/sandboxes/svg-filter",
20-
"/demo/src/sandboxes/css-keyframes",
21-
"/demo/src/sandboxes/tree",
2217
"/demo/src/sandboxes/notification-hub",
23-
"/demo/src/sandboxes/rocket-decay",
2418
"/demo/src/sandboxes/parallax",
25-
"/demo/src/sandboxes/parallax-vert"
19+
"/demo/src/sandboxes/parallax-vert",
20+
"/demo/src/sandboxes/rocket-decay",
21+
"/demo/src/sandboxes/simple-transition",
22+
"/demo/src/sandboxes/svg-filter",
23+
"/demo/src/sandboxes/slide",
24+
"/demo/src/sandboxes/train",
25+
"/demo/src/sandboxes/tree",
26+
"/demo/src/sandboxes/viewpager"
2627
],
2728
"node": "14"
2829
}

.github/ISSUE_TEMPLATE/bug.md

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

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
name: 🐞 Bug Report 🐛
2+
description: File a bug report
3+
title: '[bug]: '
4+
labels: ['potential bug']
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for filing a bug report!
10+
11+
Do you need some help?
12+
======================
13+
The issue tracker is meant for feature requests and bug reports only. This isn't the best place for
14+
support or usage questions. Questions here don't have as much visibility as they do elsewhere. Before
15+
you ask a question, here are some resources to get help first:
16+
17+
- [Read the docs](https://react-spring.io)
18+
- [Explore examples](https://github.com/pmndrs/reat-spring/tree/main/demo/src/sandbox)
19+
- Look for/ask questions on [Stack Overflow](https://stackoverflow.com/questions/ask?tags=react-spring)
20+
- Ask in [GitHub Discussions](https://github.com/pmndrs/react-spring/discussions)
21+
- Ask in [discord](https://discord.gg/ZZjjNvJ)
22+
23+
### Test Case Starter:
24+
https://codesandbox.io/s/react-spring-bug-report-vbhrr
25+
- type: checkboxes
26+
id: packages
27+
attributes:
28+
label: Which react-spring target are you using?
29+
options:
30+
- label: '`@react-spring/web`'
31+
- label: '`@react-spring/three`'
32+
- label: '`@react-spring/native`'
33+
- label: '`@react-spring/konva`'
34+
- label: '`@react-spring/zdog`'
35+
- type: input
36+
attributes:
37+
label: What version of react-spring are you using?
38+
validations:
39+
required: true
40+
- type: textarea
41+
attributes:
42+
label: "What's Wrong?"
43+
description: A concise description of what you expected to happen
44+
validations:
45+
required: true
46+
- type: textarea
47+
attributes:
48+
label: To Reproduce
49+
description: Steps to reproduce the behavior
50+
validations:
51+
required: true
52+
- type: textarea
53+
attributes:
54+
label: Expected Behaviour
55+
description: What you expected to happen
56+
validations:
57+
required: true
58+
- type: input
59+
attributes:
60+
label: Link to repo
61+
description: This is highly encouraged, provide either a Codesandbox demo or Github Repo
62+
validations:
63+
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false

.github/ISSUE_TEMPLATE/feature.md

Lines changed: 0 additions & 17 deletions
This file was deleted.
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
1+
name: 🚀 Feature Proposal
2+
description: Submit a proposal for a new feature
3+
title: '[feat]: '
4+
labels: ['enhancement']
5+
body:
6+
- type: markdown
7+
attributes:
8+
value: |
9+
Thank you for contributing a feature request!
10+
11+
Do you need some help?
12+
======================
13+
The issue tracker is meant for feature requests and bug reports only. This isn't the best place for
14+
support or usage questions. Questions here don't have as much visibility as they do elsewhere. Before
15+
you ask a question, here are some resources to get help first:
16+
17+
- [Read the docs](https://react-spring.io)
18+
- [Explore examples](https://github.com/pmndrs/reat-spring/tree/main/demo/src/sandbox)
19+
- Look for/ask questions on [Stack Overflow](https://stackoverflow.com/questions/ask?tags=react-spring)
20+
- Ask in [GitHub Discussions](https://github.com/pmndrs/react-spring/discussions)
21+
- Ask in [discord](https://discord.gg/ZZjjNvJ)
22+
- type: textarea
23+
attributes:
24+
label: A clear and concise description of what the feature is
25+
validations:
26+
required: true
27+
- type: textarea
28+
attributes:
29+
label: Why should this feature be included?
30+
validations:
31+
required: true
32+
- type: textarea
33+
attributes:
34+
label: Please provide an example for how this would work

.github/ISSUE_TEMPLATE/question.md

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

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 1 addition & 3 deletions

.github/workflows/main.yml

Lines changed: 16 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,18 +12,26 @@ jobs:
1212
uses: styfle/[email protected]
1313
with:
1414
access_token: ${{ secrets.GITHUB_TOKEN }}
15+
1516
- name: Checkout repo
1617
uses: actions/checkout@v2
18+
1719
- name: Setup node
1820
uses: actions/setup-node@v2
1921
with:
2022
node-version: '15.11.0'
21-
- name: Install deps
22-
# this runs a build script so there is no dedicated build
23-
run: |
24-
npm i -g yarn
25-
yarn install
26-
- name: Run tests
27-
run: yarn test
28-
- name: Trial Build
23+
24+
- name: Install
25+
run: yarn install
26+
27+
- name: Typecheck
28+
run: yarn test:ts
29+
30+
- name: Tests (Jest)
31+
run: yarn test:unit
32+
33+
- name: Test (Cypress)
34+
run: yarn test:e2e
35+
36+
- name: Build
2937
run: yarn build

.gitignore

Lines changed: 29 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,4 +27,32 @@ Desktop.ini
2727
report.*.json
2828
.idea
2929

30-
**/CHANGELOG.md
30+
#
31+
# Changesets
32+
#
33+
**/CHANGELOG.md
34+
35+
#
36+
# Yarn
37+
#
38+
.yarn/*
39+
!.yarn/cache
40+
!.yarn/patches
41+
!.yarn/plugins
42+
!.yarn/releases
43+
!.yarn/sdks
44+
!.yarn/versions
45+
46+
#
47+
# dot files
48+
#
49+
.cache
50+
.vercel
51+
.output
52+
53+
#
54+
# Remix
55+
#
56+
docs-new/public/build
57+
docs-new/api/_build
58+
docs-new/api/index.js

0 commit comments

Comments
 (0)