Skip to content

Commit 89764a8

Browse files
committed
fix: stop filtering some frameworks from tests
1 parent 64a8904 commit 89764a8

File tree

16 files changed

+22
-22
lines changed

16 files changed

+22
-22
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ We're looking for TanStack Table Partners to join our mission! Partner with us t
114114

115115
… and more at <a href="https://tanstack.com"><b>TanStack.com »</b></a>
116116

117-
<!-- USE THE FORCE LUKE -->
117+
<!-- USE THE FORCE, LUKE -->

docs/reference/variables/columnPinningFeature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ title: columnPinningFeature
99
const columnPinningFeature: TableFeature<ColumnPinningFeatureConstructors<TableFeatures, RowData>>;
1010
```
1111

12-
Defined in: [features/column-pinning/columnPinningFeature.ts:324](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/column-pinning/columnPinningFeature.ts#L324)
12+
Defined in: [features/column-pinning/columnPinningFeature.ts:327](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/column-pinning/columnPinningFeature.ts#L327)
1313

1414
The Column Pinning feature adds column pinning state and APIs to the table, row, and column objects.

docs/reference/variables/columnVisibilityFeature.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,6 @@ title: columnVisibilityFeature
99
const columnVisibilityFeature: TableFeature<ColumnVisibilityFeatureConstructors<TableFeatures, RowData>>;
1010
```
1111

12-
Defined in: [features/column-visibility/columnVisibilityFeature.ts:155](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/column-visibility/columnVisibilityFeature.ts#L155)
12+
Defined in: [features/column-visibility/columnVisibilityFeature.ts:157](https://github.com/TanStack/table/blob/main/packages/table-core/src/features/column-visibility/columnVisibilityFeature.ts#L157)
1313

1414
The Column Visibility feature adds column visibility state and APIs to the table, row, and column objects.

package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"packageManager": "pnpm@10.33.0",
99
"type": "module",
1010
"scripts": {
11-
"build": "nx run-many --targets=build --exclude='examples/**' && size-limit",
11+
"build": "nx affected --targets=build --exclude='examples/**' && size-limit",
1212
"build:all": "nx run-many --targets=build --exclude='examples/**' && size-limit",
1313
"build:core": "nx build @tanstack/table-core && size-limit",
1414
"cipublish": "node scripts/publish.js",
@@ -23,16 +23,16 @@
2323
"preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm",
2424
"size": "size-limit",
2525
"test": "pnpm run test:ci",
26-
"test:build": "nx affected --target=test:build --exclude='examples/{svelte,vanilla,vue}/**'",
27-
"test:ci": "nx run-many --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build --exclude='examples/{svelte,vanilla,vue}/**'",
26+
"test:build": "nx affected --target=test:build",
27+
"test:ci": "nx run-many --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build",
2828
"test:docs": "node scripts/verify-links.ts",
29-
"test:eslint": "nx affected --target=test:eslint --exclude='examples/{svelte,vanilla,vue}/**'",
29+
"test:eslint": "nx affected --target=test:eslint",
3030
"test:knip": "NODE_OPTIONS='--max-old-space-size=4096' knip",
31-
"test:lib": "nx affected --targets=test:lib --exclude='examples/{svelte,vanilla,vue}/**'",
31+
"test:lib": "nx affected --targets=test:lib",
3232
"test:lib:dev": "pnpm test:lib && nx watch --all -- pnpm test:lib",
33-
"test:pr": "nx affected --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build --exclude='examples/{svelte,vanilla,vue}/**'",
33+
"test:pr": "nx affected --targets=test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build",
3434
"test:sherif": "sherif",
35-
"test:types": "nx affected --targets=test:types --exclude='examples/{svelte,vanilla,vue}/**'",
35+
"test:types": "nx affected --targets=test:types",
3636
"watch": "pnpm run build:all && nx watch --all -- pnpm run build:all"
3737
},
3838
"nx": {

packages/angular-table/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ We're looking for TanStack Table Partners to join our mission! Partner with us t
114114

115115
… and more at <a href="https://tanstack.com"><b>TanStack.com »</b></a>
116116

117-
<!-- USE THE FORCE LUKE -->
117+
<!-- USE THE FORCE, LUKE -->

packages/lit-table/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ We're looking for TanStack Table Partners to join our mission! Partner with us t
114114

115115
… and more at <a href="https://tanstack.com"><b>TanStack.com »</b></a>
116116

117-
<!-- USE THE FORCE LUKE -->
117+
<!-- USE THE FORCE, LUKE -->

packages/match-sorter-utils/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ We're looking for TanStack Table Partners to join our mission! Partner with us t
114114

115115
… and more at <a href="https://tanstack.com"><b>TanStack.com »</b></a>
116116

117-
<!-- USE THE FORCE LUKE -->
117+
<!-- USE THE FORCE, LUKE -->

packages/preact-table/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ We're looking for TanStack Table Partners to join our mission! Partner with us t
114114

115115
… and more at <a href="https://tanstack.com"><b>TanStack.com »</b></a>
116116

117-
<!-- USE THE FORCE LUKE -->
117+
<!-- USE THE FORCE, LUKE -->

packages/react-table-devtools/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ We're looking for TanStack Table Partners to join our mission! Partner with us t
114114

115115
… and more at <a href="https://tanstack.com"><b>TanStack.com »</b></a>
116116

117-
<!-- USE THE FORCE LUKE -->
117+
<!-- USE THE FORCE, LUKE -->

packages/react-table/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,4 +114,4 @@ We're looking for TanStack Table Partners to join our mission! Partner with us t
114114

115115
… and more at <a href="https://tanstack.com"><b>TanStack.com »</b></a>
116116

117-
<!-- USE THE FORCE LUKE -->
117+
<!-- USE THE FORCE, LUKE -->

0 commit comments

Comments
 (0)