|
18 | 18 | "clean:node_modules": "find . -name 'node_modules' -type d -prune -exec rm -rf {} +", |
19 | 19 | "clean:all": "pnpm run clean && pnpm run clean:node_modules", |
20 | 20 | "dev": "pnpm run watch", |
21 | | - "docs:generate": "node scripts/generateDocs.ts", |
22 | 21 | "format": "pnpm run prettier:write", |
| 22 | + "generate-docs": "node scripts/generate-docs.ts", |
23 | 23 | "lint:fix": "nx affected --target=lint:fix --exclude=examples/**", |
24 | 24 | "lint:fix:all": "pnpm run format && nx run-many --targets=lint --fix", |
25 | 25 | "preinstall": "node -e \"if(process.env.CI == 'true') {console.log('Skipping preinstall...'); process.exit(1)}\" || npx -y only-allow pnpm", |
|
29 | 29 | "test": "pnpm run test:ci", |
30 | 30 | "test:build": "nx affected --target=test:build --exclude=examples/**", |
31 | 31 | "test:ci": "nx run-many --targets=test:format,test:eslint,test:sherif,test:knip,test:lib,test:types,test:build,build", |
| 32 | + "test:docs": "node scripts/verify-links.ts", |
32 | 33 | "test:eslint": "nx affected --target=test:eslint --exclude=examples/**", |
33 | 34 | "test:format": "pnpm run prettier --check", |
34 | 35 | "test:knip": "knip", |
|
41 | 42 | }, |
42 | 43 | "nx": { |
43 | 44 | "includedScripts": [ |
| 45 | + "test:docs", |
44 | 46 | "test:knip", |
45 | 47 | "test:sherif" |
46 | 48 | ] |
|
60 | 62 | "@faker-js/faker": "^9.9.0", |
61 | 63 | "@size-limit/preset-small-lib": "^11.2.0", |
62 | 64 | "@svitejs/changesets-changelog-github-compact": "^1.2.0", |
63 | | - "@tanstack/config": "0.20.2", |
| 65 | + "@tanstack/eslint-config": "0.3.2", |
| 66 | + "@tanstack/typedoc-config": "0.2.1", |
| 67 | + "@tanstack/vite-config": "0.2.1", |
64 | 68 | "@testing-library/jest-dom": "^6.8.0", |
65 | 69 | "@types/node": "^22.15.2", |
66 | 70 | "eslint": "^9.36.0", |
67 | 71 | "eslint-plugin-unused-imports": "^4.2.0", |
68 | 72 | "jsdom": "^27.0.0", |
69 | 73 | "knip": "^5.64.0", |
| 74 | + "markdown-link-extractor": "^4.0.2", |
70 | 75 | "nx": "^21.5.3", |
71 | 76 | "premove": "^4.0.0", |
72 | 77 | "prettier": "^3.6.2", |
|
0 commit comments