Skip to content

Commit 3073f3e

Browse files
authored
[v9] Release
2 parents 226f00a + a9b80a4 commit 3073f3e

File tree

315 files changed

+23840
-11158
lines changed

Some content is hidden

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

315 files changed

+23840
-11158
lines changed

.babelrc

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

.codesandbox/ci.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"packages": ["packages/*", "targets/*"],
3+
"sandboxes": ["/demo/src/sandboxes/card", "/demo/src/sandboxes/gooBlobs"],
4+
"node": "14"
5+
}

.github/ISSUE_TEMPLATE/question.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ about: Ask the maintainers (as a last resort)
66

77
## 🤓 Question
88

9-
(You _must_ search the issues before asking your question. Please consider asking in [the official Spectrum community](https://spectrum.chat/react-spring) and/or [Stack Overflow](https://stackoverflow.com) first.)
9+
(You _must_ search the issues before asking your question. Please consider asking in [the Discussions tab](https://github.com/pmndrs/react-spring/discussions) and/or [Stack Overflow](https://stackoverflow.com) first.)

.github/workflows/main.yml

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: release
2+
on:
3+
push: {}
4+
pull_request: {}
5+
jobs:
6+
main:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- name: Cancel Previous Runs
10+
uses: styfle/[email protected]
11+
with:
12+
access_token: ${{ secrets.GITHUB_TOKEN }}
13+
- name: Checkout repo
14+
uses: actions/checkout@v2
15+
- name: Setup node
16+
uses: actions/setup-node@v2
17+
with:
18+
node-version: '14.x'
19+
- name: Install deps
20+
# this runs a build script so there is no dedicated build
21+
run: yarn install
22+
- name: Run tests
23+
run: yarn test:ts && yarn test

.gitignore

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,16 @@
1+
dist/
2+
.bic_cache
3+
.rpt2_cache/
14
node_modules/
25
coverage/
3-
dist/
46
Thumbs.db
57
ehthumbs.db
68
Desktop.ini
79
$RECYCLE.BIN/
810
.DS_Store
9-
.vscode
10-
.docz/
1111
package-lock.json
12-
coverage/
12+
report.*.json
1313
.idea
14+
*.log
15+
/docs/
16+
/examples/

.meta

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"projects": {
3+
"docs": "https://github.com/react-spring/react-spring.io.git",
4+
"examples": "https://github.com/react-spring/react-spring-examples.git"
5+
}
6+
}

.npmignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
*.log

.prettierrc

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
{
2+
"arrowParens": "avoid",
3+
"jsxBracketSameLine": true,
4+
"printWidth": 80,
5+
"semi": false,
6+
"singleQuote": true,
7+
"tabWidth": 2,
8+
"trailingComma": "es5"
9+
}

.size-snapshot.json

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

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
11
language: node_js
22
node_js:
3-
- stable
3+
- stable
4+
script:
5+
- yarn test:ts
6+
- yarn test

0 commit comments

Comments
 (0)