Skip to content

Commit 32fbd21

Browse files
docs: correct local relative links (#99)
docs: check relative docs
1 parent 58f4afa commit 32fbd21

File tree

6 files changed

+199
-5
lines changed

6 files changed

+199
-5
lines changed

docs/concepts.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ At the heart of every Ranger is the `Ranger` class. This class will provide ever
2222
- Ticks (labels) generation
2323

2424
After reading about Ranger's concepts, you should:
25-
- [Check Out Some Examples](./examples)
25+
- [Check Out Some Examples](./examples/react/basic)

docs/framework/react/api/basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ menu: API
77
## Examples
88
Want to skip to the implementation? Check out these examples:
99

10-
- [basic](../../examples/react/basic)
10+
- [basic](../examples/react/basic)
1111

1212
The API below described how to use the **basic** features.
1313

docs/framework/react/api/update-on-drag.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ menu: API
77
## Examples
88
Want to skip to the implementation? Check out these examples:
99

10-
- [update-on-drag](../../examples/react/update-on-drag)
10+
- [update-on-drag](../../examples/update-on-drag)
1111

1212
The API below described how to use the **update-on-drag** features.
1313

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You can install TanStack Ranger with any [NPM](https://npmjs.com) package manage
66

77
Depending on your framework of choice, install one of the following packages:
88

9-
- [React](./adapters/react-ranger)
9+
- [React](./framework/react/react-ranger.md)
1010
- Solid (coming soon!)
1111
- Vue (coming soon!)
1212
- Svelte (coming soon!)

package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
"test": "(is-ci && pnpm test:ci) || pnpm test:dev",
99
"test:ci": "vitest run",
1010
"test:dev": "vitest watch",
11+
"test:docs": "ts-node scripts/verify-links.ts",
1112
"build": "rollup --config rollup.config.js",
1213
"watch": "concurrently --kill-others \"rollup --config rollup.config.js -w\" \"tsc -b --watch\"",
1314
"linkAll": "lerna exec 'pnpm link' --parallel",
@@ -54,6 +55,7 @@
5455
"concurrently": "^7.1.0",
5556
"current-git-branch": "^1.1.0",
5657
"git-log-parser": "^1.2.0",
58+
"markdown-link-extractor": "^4.0.3",
5759
"lerna": "^4.0.0",
5860
"luxon": "^2.3.2",
5961
"prettier": "^2.8.1",
@@ -68,6 +70,7 @@
6870
"solid-js": "^1.6.5",
6971
"stream-to-array": "^2.3.0",
7072
"svelte": "^3.55.0",
73+
"tinyglobby": "^0.2.15",
7174
"ts-node": "^10.7.0",
7275
"typescript": "^4.9.4",
7376
"vue": "^3.2.33"

pnpm-lock.yaml

Lines changed: 192 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)