Skip to content

Commit 8f1c220

Browse files
committed
Update website dependencies
1 parent e3afb54 commit 8f1c220

File tree

6 files changed

+2816
-2019
lines changed

6 files changed

+2816
-2019
lines changed

.github/workflows/website.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
- uses: actions/checkout@v1
1515
- uses: actions/setup-node@v1
1616
with:
17-
node-version: "12.x"
17+
node-version: "14.x"
1818
- name: Test Build
1919
run: |
2020
yarn install --frozen-lockfile;

typedoc.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
{
2-
"entryPoints": ["src/index.ts"],
2+
"entryPoints": ["./src/index.ts"],
33
"out": "reference",
44
"readme": "none",
5-
"excludeNotDocumented": true
5+
"excludeNotDocumented": true,
6+
"exclude": ["**/*.test.ts", "**/*.test.tsx", "**/*.stories.tsx"]
67
}

website/docs/sidebars.js

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,5 +4,10 @@ module.exports = {
44
type: "autogenerated",
55
dirName: ".", // generate sidebar slice from the docs folder (or versioned_docs/<version>)
66
},
7+
{
8+
type: "link",
9+
label: "API",
10+
href: "/docs/api",
11+
},
712
],
813
};

website/docusaurus.config.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,8 @@ module.exports = {
6060
readme: "none",
6161
excludeNotDocumented: true,
6262
plugin: ["typedoc-plugin-rename-defaults"],
63+
exclude: ["**/*.test.ts", "**/*.test.tsx", "**/*.stories.tsx"],
64+
readmeTitle: "API",
6365
},
6466
],
6567
],

website/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,24 @@
2020
},
2121
"dependencies": {
2222
"@algolia/client-search": "^4.9.1",
23-
"@docusaurus/core": "^2.0.0-beta.6",
24-
"@docusaurus/preset-classic": "^2.0.0-beta.6",
23+
"@docusaurus/core": "^2.0.0-beta.15",
24+
"@docusaurus/preset-classic": "^2.0.0-beta.15",
2525
"@mdx-js/react": "^1.6.21",
2626
"@rehooks/component-size": "^1.0.3",
2727
"@svgr/webpack": "^5.5.0",
2828
"@types/react": "^17.0.19",
2929
"clsx": "^1.1.1",
30-
"docusaurus-plugin-typedoc": "^0.15.3",
30+
"docusaurus-plugin-typedoc": "^0.16.9",
3131
"file-loader": "^6.2.0",
3232
"react": "^17.0.1",
3333
"react-dom": "^17.0.1",
3434
"react-spreadsheet": "^0.5.9",
35-
"typedoc": "^0.21.6",
36-
"typedoc-plugin-markdown": "^3.10.4",
37-
"typedoc-plugin-rename-defaults": "^0.3.0",
35+
"typedoc": "^0.22.11",
36+
"typedoc-plugin-markdown": "^3.11.13",
37+
"typedoc-plugin-rename-defaults": "^0.4.0",
3838
"typescript": "^4.3.5",
3939
"url-loader": "^4.1.1",
40-
"webpack": "^5.51.1"
40+
"webpack": "^5.68.0"
4141
},
4242
"devDependencies": {
4343
"@babel/core": "^7.15.0",

0 commit comments

Comments
 (0)