Skip to content

Commit 94b6bbe

Browse files
committed
v8
1 parent 7c47a99 commit 94b6bbe

File tree

721 files changed

+43918
-209157
lines changed

Some content is hidden

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

721 files changed

+43918
-209157
lines changed

.babelrc

-18
This file was deleted.

.editorconfig

+9
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
root = true
2+
3+
[*]
4+
charset = utf-8
5+
indent_style = space
6+
indent_size = 2
7+
end_of_line = lf
8+
insert_final_newline = true
9+
trim_trailing_whitespace = true

.eslintrc

-3
This file was deleted.

.gitattributes

+2-1
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
* text=auto
1+
# Auto detect text files and perform LF normalization
2+
* text=auto

.github/FUNDING.yml

+2
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1+
# These are supported funding model platforms
2+
13
github: tannerlinsley

.github/ISSUE_TEMPLATE/config.yml

-8
This file was deleted.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
---
2+
name: Feature request
3+
about: Suggest an idea for this project
4+
---
5+
6+
# STOP
7+
8+
We do not track feature requests through Github. Please use [Github Discussions](https://github.com/tanstack/react-table/discussions) to talk about new ideas and features.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
---
2+
name: Questions, Support & Help
3+
about: Looking for help? Need a question answered?
4+
---
5+
6+
# STOP
7+
8+
We do not use Github to track general support. Please use our public support forum at https://github.com/tanstack/react-table/discussions.
9+
10+
NOTE: If a support/help/question issue is opened, it will be closed immediately and be redirected to the forum. Thanks for helping us keep our issues clean and productive!

.github/workflows/ci.yml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
name: ci
2+
concurrency:
3+
group: publish-${{ github.github.base_ref }}
4+
cancel-in-progress: true
5+
on:
6+
push:
7+
branches:
8+
- "main"
9+
- "next"
10+
- "beta"
11+
- "alpha"
12+
jobs:
13+
publish:
14+
name: "Publish Module to NPM"
15+
if: github.repository == 'tanstack/react-table' && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/alpha' || github.ref == 'refs/heads/beta' || github.ref == 'refs/heads/next')
16+
runs-on: ubuntu-latest
17+
steps:
18+
- uses: actions/checkout@v2
19+
with:
20+
fetch-depth: "0"
21+
- uses: actions/setup-node@v2
22+
with:
23+
node-version: 16
24+
registry-url: https://registry.npmjs.org/
25+
cache: "yarn"
26+
- run: |
27+
yarn install --frozen-lockfile
28+
git config --global user.name 'Tanner Linsley'
29+
git config --global user.email '[email protected]'
30+
yarn cipublish
31+
env:
32+
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}
33+
GH_TOKEN: ${{ secrets.GH_TOKEN }}
34+
YARN_REGISTRY: https://registry.npmjs.org/
35+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
36+
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
37+
# GH_TOKEN: ${{secrets.GH_TOKEN}}

.github/workflows/pr.yml

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: pr
2+
on: [pull_request]
3+
jobs:
4+
test:
5+
name: "Test (node ${{ matrix.node }})"
6+
runs-on: ubuntu-latest
7+
strategy:
8+
matrix:
9+
node: [12, 14, 16]
10+
steps:
11+
- uses: actions/checkout@v2
12+
- uses: actions/setup-node@v2
13+
with:
14+
node-version: ${{ matrix.node }}
15+
- run: |
16+
yarn install --frozen-lockfile
17+
yarn build
18+
yarn test

.github/workflows/size-comments.yml

-15
This file was deleted.

.github/workflows/tests.yml

-44
This file was deleted.

.gitignore

+36-10
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,41 @@
1+
2+
# See https://help.github.com/ignore-files/ for more about ignoring files.
3+
4+
# dependencies
15
node_modules
6+
7+
# builds
8+
types
9+
build
210
dist
11+
lib
312
es
4-
docs/build
5-
react-table.js
6-
react-table.min.js
7-
react-table.css
8-
*.log
9-
.idea
13+
artifacts
14+
.rpt2_cache
15+
coverage
16+
*.tgz
17+
18+
# misc
1019
.DS_Store
20+
.env
21+
.env.local
22+
.env.development.local
23+
.env.test.local
24+
.env.production.local
25+
.next
26+
27+
npm-debug.log*
28+
yarn-debug.log*
29+
yarn-error.log*
1130
.history
12-
.vscode
13-
package-lock.json
14-
coverage
15-
.docz
31+
size-plugin.json
32+
stats-hydration.json
33+
stats-react.json
34+
stats.html
35+
.vscode/settings.json
36+
37+
*.log
38+
.DS_Store
39+
node_modules
40+
.cache
41+
dist

.vscode/settings.json

-8
This file was deleted.

0 commit comments

Comments
 (0)