Skip to content

Commit 8e5c47c

Browse files
committed
chore: update typedoc settings
1 parent fb30e93 commit 8e5c47c

File tree

11 files changed

+32
-22
lines changed

11 files changed

+32
-22
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
"reset": "find . -type dir -name node_modules | xargs rm -rf",
1717
"clean": "lerna run clean",
1818
"build": "lerna run build",
19-
"docs": "yarn build && typedoc --out docs --entryPointStrategy packages 'packages/*' --exclude 'packages/uikit-testing-tools' && yarn clean",
19+
"docs": "yarn build && typedoc --options typedoc.json && yarn clean",
2020
"test": "jest --verbose",
2121
"test:build": "yarn build --stream && yarn clean --stream",
2222
"test:docs-validation": "yarn build && yarn workspace @sendbird/docs-validation run test && yarn clean",

packages/uikit-chat-hooks/package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -71,10 +71,5 @@
7171
}
7272
]
7373
]
74-
},
75-
"typedoc": {
76-
"entryPoint": "./src/index.ts",
77-
"readmeFile": "./README.md",
78-
"displayName": "@sendbird/uikit-chat-hooks"
7974
}
8075
}

packages/uikit-chat-hooks/src/__tests__/channel/useGroupChannelMessages/useGroupChannelMessagesWithCollection.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ describe('useGroupChannelMessagesWithCollection', () => {
8484
});
8585

8686
await act(() => {
87-
return new Promise((resolve) => {
87+
return new Promise<void>((resolve) => {
8888
setTimeout(() => {
8989
unmount();
9090
resolve();
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"entryPoints": ["./src/index.ts"],
3+
"readme": "./README.md",
4+
"name": "@sendbird/uikit-chat-hooks"
5+
}

packages/uikit-react-native-foundation/package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -84,10 +84,5 @@
8484
}
8585
]
8686
]
87-
},
88-
"typedoc": {
89-
"entryPoint": "./src/index.ts",
90-
"readmeFile": "./README.md",
91-
"displayName": "@sendbird/uikit-react-native-foundation"
9287
}
9388
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"entryPoints": ["./src/index.ts"],
3+
"readme": "./README.md",
4+
"name": "@sendbird/uikit-react-native-foundation"
5+
}

packages/uikit-react-native/package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -201,10 +201,5 @@
201201
}
202202
]
203203
]
204-
},
205-
"typedoc": {
206-
"entryPoint": "./src/index.ts",
207-
"readmeFile": "./README.md",
208-
"displayName": "@sendbird/uikit-react-native"
209204
}
210205
}
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"entryPoints": ["./src/index.ts"],
3+
"readme": "./README.md",
4+
"name": "@sendbird/uikit-react-native"
5+
}

packages/uikit-utils/package.json

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -81,10 +81,5 @@
8181
}
8282
]
8383
]
84-
},
85-
"typedoc": {
86-
"entryPoint": "./src/index.ts",
87-
"readmeFile": "./README.md",
88-
"displayName": "@sendbird/uikit-utils"
8984
}
9085
}

packages/uikit-utils/typedoc.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"entryPoints": ["./src/index.ts"],
3+
"readme": "./README.md",
4+
"name": "@sendbird/uikit-utils"
5+
}

0 commit comments

Comments
 (0)