Skip to content

Commit

Permalink
chore(docs): update more deps (#750)
Browse files Browse the repository at this point in the history
  • Loading branch information
paularmstrong authored Dec 9, 2024
1 parent 75e5570 commit 0012245
Show file tree
Hide file tree
Showing 11 changed files with 40 additions and 800 deletions.
542 changes: 0 additions & 542 deletions docs/.astro/astro/content.d.ts

This file was deleted.

215 changes: 0 additions & 215 deletions docs/.astro/collections/i18n.schema.json

This file was deleted.

8 changes: 0 additions & 8 deletions docs/.astro/settings.json

This file was deleted.

2 changes: 0 additions & 2 deletions docs/.astro/types.d.ts

This file was deleted.

16 changes: 8 additions & 8 deletions docs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,27 +18,27 @@
"glob": "^10.1.0",
"netlify-plugin-csp-generator": "^1.6.1",
"onerepo": "1.1.2",
"postcss": "^8.4.35",
"postcss": "^8.4.49",
"rehype-autolink-headings": "^7.1.0",
"rehype-slug": "^6.0.0",
"remark-toc": "^9.0.0",
"typedoc": "^0.27.3",
"typedoc": "^0.27.4",
"typedoc-plugin-markdown": "^4.3.2",
"typedoc-plugin-remark": "^1.1.1",
"typescript": "^5.7.2"
},
"dependencies": {
"@expressive-code/plugin-collapsible-sections": "^0.38.3",
"d3": "^7.8.5",
"dagre-d3-es": "^7.0.10",
"d3": "^7.9.0",
"dagre-d3-es": "^7.0.11",
"graph-data-structure": "^3.2.0",
"hast-util-from-html": "^2.0.1",
"hast-util-to-string": "^3.0.0",
"hastscript": "^8.0.0",
"hast-util-from-html": "^2.0.3",
"hast-util-to-string": "^3.0.1",
"hastscript": "^9.0.0",
"js-base64": "^3.7.7",
"mermaid": "11.4.1",
"pako": "^2.1.0",
"rehype": "^13.0.1",
"rehype": "^13.0.2",
"rehype-mermaid": "^3.0.0",
"starlight-links-validator": "^0.13.4",
"unist-util-visit": "^5.0.0"
Expand Down
3 changes: 1 addition & 2 deletions docs/src/content/docs/api/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Full API documentation for oneRepo.
---

<!-- start-onerepo-sentinel -->
<!-- @generated SignedSource<<dd325a452315206896fb4a3403b1ecd0>> -->
<!-- @generated SignedSource<<c688d123e5bf9dec0d324cdaef30d82a>> -->

## Variables

Expand Down Expand Up @@ -1953,7 +1953,6 @@ end: () => Promise<void>;
logger: Logger;
```
**<span class="tag danger">Alpha</span>**
**Defined in:** [modules/logger/src/index.ts](https://github.com/paularmstrong/onerepo/blob/main/modules/logger/src/index.ts)
---
Expand Down
4 changes: 3 additions & 1 deletion docs/src/pages/open-graph/[...route].ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { getCollection } from 'astro:content';
import { OGImageRoute } from 'astro-og-canvas';

const collectionEntries = await getCollection('docs');
const pages = Object.fromEntries(collectionEntries.map(({ slug, data }) => [slug, data]));
const pages = Object.fromEntries(
collectionEntries.map(({ slug, data }: { slug: string; data: unknown }) => [slug, data]),
);

export const { getStaticPaths, GET } = OGImageRoute({
param: 'route',
Expand Down
3 changes: 2 additions & 1 deletion docs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
"noEmit": false,
"composite": true,
"emitDeclarationOnly": true,
"types": ["node"]
"types": ["node"],
"module": "ES2022"
},
"include": ["./**/*"],
"exclude": ["dist/**/*"],
Expand Down
5 changes: 5 additions & 0 deletions plugins/docgen/.changes/002-cold-baboons-happen.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
type: patch
---

Updates to third-party modules
2 changes: 1 addition & 1 deletion plugins/docgen/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"remark-gfm": "^4.0.0",
"remark-parse": "^11.0.0",
"remark-stringify": "^11.0.0",
"unified": "^11.0.4"
"unified": "^11.0.5"
},
"devDependencies": {
"@internal/tsconfig": "workspace:^",
Expand Down
Loading

0 comments on commit 0012245

Please sign in to comment.