File tree Expand file tree Collapse file tree 4 files changed +573
-9
lines changed
packages/react-router/lib Expand file tree Collapse file tree 4 files changed +573
-9
lines changed Original file line number Diff line number Diff line change @@ -44,13 +44,13 @@ jobs:
44
44
run : pnpm build
45
45
46
46
- name : 📚 Generate Typedoc Docs
47
- run : pnpm run docs
47
+ run : pnpm run docs:typedoc
48
48
49
49
- name : 📚 Generate Markdown Docs
50
50
run : |
51
- node --experimental-strip-types scripts/ docs.ts --path packages/react-router/lib/components.tsx --write
52
- node --experimental-strip-types scripts/ docs.ts --path packages/react-router/lib/hooks.tsx --write
53
- node --experimental-strip-types scripts/ docs.ts --path packages/react-router/lib/dom/lib.tsx --write
51
+ pnpm run docs:jsdoc --path packages/react-router/lib/components.tsx --write
52
+ pnpm run docs:jsdoc --path packages/react-router/lib/hooks.tsx --write
53
+ pnpm run docs:jsdoc --path packages/react-router/lib/dom/lib.tsx --write
54
54
55
55
- name : 💪 Commit
56
56
run : |
Original file line number Diff line number Diff line change 7
7
"clean" : " git clean -fdX ." ,
8
8
"clean:build" : " git clean -fdx -e node_modules ." ,
9
9
"clean:integration" : " node ./integration/helpers/cleanup.mjs" ,
10
- "docs" : " typedoc" ,
10
+ "docs:typedoc" : " typedoc" ,
11
+ "docs:jsdoc" : " node --experimental-strip-types scripts/docs.ts" ,
11
12
"format" : " prettier --ignore-path .eslintignore --write ." ,
12
13
"format:check" : " prettier --ignore-path .eslintignore --check ." ,
13
14
"lint" : " eslint --cache ." ,
You can’t perform that action at this time.
0 commit comments