Skip to content

Commit

Permalink
Include taco-auth in API documentation.
Browse files Browse the repository at this point in the history
At @ts-expect-error annotation so that docs can build.
  • Loading branch information
derekpierre committed Oct 7, 2024
1 parent 9fa5ffa commit 66c5381
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
4 changes: 2 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ pnpm fix
Build and publish documentation with:

```bash
pnpm doc
pnpm doc:publish
pnpm typedoc
pnpm typedoc:publish
```

## Publishing
Expand Down
1 change: 1 addition & 0 deletions packages/taco-auth/test/auth-provider.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ describe('auth provider caching', () => {
it('caches auth signature, but regenerates when expired', async () => {
const createAuthSignatureSpy = vi.spyOn(
eip4361Provider,
// @ts-expect-error -- spying on private function
'createSIWEAuthMessage',
);

Expand Down
2 changes: 1 addition & 1 deletion typedoc.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"extends": ["./typedoc.base.json"],
"entryPoints": ["packages/pre", "packages/shared", "packages/taco"],
"entryPoints": ["packages/pre", "packages/shared", "packages/taco", "packages/taco-auth"],
"entryPointStrategy": "packages",
"name": "@nucypher/taco-web"
}

0 comments on commit 66c5381

Please sign in to comment.