Skip to content

Commit 46989ae

Browse files
committed
Fix build
1 parent 8c8d191 commit 46989ae

File tree

3 files changed

+64
-42
lines changed

3 files changed

+64
-42
lines changed

.devcontainer/devcontainer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
// For format details, see https://aka.ms/devcontainer.json. For config options, see the
2+
// README at: https://github.com/devcontainers/templates/tree/main/src/typescript-node
3+
{
4+
"name": "Node.js & TypeScript",
5+
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6+
"image": "mcr.microsoft.com/devcontainers/typescript-node:1-22-bookworm"
7+
8+
// Features to add to the dev container. More info: https://containers.dev/features.
9+
// "features": {},
10+
11+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
12+
// "forwardPorts": [],
13+
14+
// Use 'postCreateCommand' to run commands after the container is created.
15+
// "postCreateCommand": "yarn install",
16+
17+
// Configure tool-specific properties.
18+
// "customizations": {},
19+
20+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
21+
// "remoteUser": "root"
22+
}

package.json

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -36,57 +36,58 @@
3636
"pre-commit": "yarn lint-staged"
3737
},
3838
"dependencies": {
39+
"@csstools/postcss-global-data": "^2.1.1",
3940
"@docusaurus/core": "^3.6.3",
4041
"@docusaurus/faster": "^3.6.3",
42+
"@docusaurus/plugin-client-redirects": "^3.6.3",
4143
"@docusaurus/plugin-content-docs": "^3.6.3",
4244
"@docusaurus/plugin-debug": "^3.6.3",
4345
"@docusaurus/plugin-google-gtag": "3.6.3",
4446
"@docusaurus/plugin-sitemap": "^3.6.3",
4547
"@docusaurus/theme-classic": "^3.6.3",
48+
"@docusaurus/tsconfig": "^3.6.3",
4649
"@inkeep/widgets": "^0.2.290",
4750
"@mdx-js/react": "^3.0.0",
4851
"classnames": "^2.3.1",
4952
"clsx": "^2.1.1",
5053
"date-fns": "^3.6.0",
54+
"dotenv": "^16.4.5",
5155
"highlightjs-terraform": "https://github.com/highlightjs/highlightjs-terraform#eb1b9661e143a43dff6b58b391128ce5cdad31d4",
5256
"lowlight": "^3.1.0",
57+
"nanoid": "^5.0.9",
58+
"postcss-preset-env": "^9.5.14",
5359
"prism-react-renderer": "^2.3.0",
54-
"react": "^18.3.1",
5560
"react-dom": "^18.3.1",
5661
"react-loadable": "^5.5.0",
57-
"react-use": "^17.5.0"
62+
"react-use": "^17.5.0",
63+
"react": "^18.3.1",
64+
"rehype-highlight": "^7.0.2",
65+
"remark-mdx": "^2.1.1",
66+
"vite-node": "^3.0.5"
5867
},
5968
"devDependencies": {
60-
"@csstools/postcss-global-data": "^2.1.1",
6169
"@docusaurus/module-type-aliases": "^3.6.3",
62-
"@docusaurus/plugin-client-redirects": "^3.6.3",
63-
"@docusaurus/tsconfig": "^3.6.3",
6470
"@docusaurus/types": "^3.6.3",
6571
"@types/react": "^18.3.3",
6672
"ajv": "^8.16.0",
67-
"dotenv": "^16.4.5",
6873
"hast": "^1.0.0",
6974
"jest": "^29.7.0",
7075
"js-yaml": "^4.1.0",
7176
"loadr": "^0.1.1",
72-
"mdast": "^3.0.0",
7377
"mdast-util-from-markdown": "^2.0.1",
7478
"mdast-util-frontmatter": "^2.0.1",
7579
"mdast-util-gfm": "^3.0.0",
7680
"mdast-util-mdx": "^3.0.0",
81+
"mdast": "^3.0.0",
7782
"micromark-extension-frontmatter": "^2.0.0",
7883
"micromark-extension-gfm": "^3.0.0",
7984
"micromark-extension-mdxjs": "^3.0.0",
80-
"nanoid": "^5.0.9",
8185
"postcss": "^8.4.38",
82-
"postcss-preset-env": "^9.5.14",
83-
"rehype-highlight": "^7.0.0",
8486
"rehype-stringify": "^10.0.1",
8587
"remark-cli": "10.0.1",
8688
"remark-copy-linked-files": "^1.5.0",
8789
"remark-frontmatter": "^4.0.1",
8890
"remark-gfm": "^3.0.1",
89-
"remark-mdx": "^2.1.1",
9091
"remark-parse": "^10.0.1",
9192
"remark-preset-lint-markdown-style-guide": "^5.1.2",
9293
"remark-rehype": "^10.1.0",
@@ -96,13 +97,12 @@
9697
"tsc-esm-fix": "^3.1.0",
9798
"tsm": "^2.3.0",
9899
"typescript": "~5.5.2",
99-
"unified": "^11.0.5",
100100
"unified-lint-rule": "^3.0.0",
101-
"unist": "^0.0.1",
101+
"unified": "^11.0.5",
102102
"unist-util-find": "^3.0.0",
103103
"unist-util-visit-parents": "^6.0.1",
104-
"vfile": "^6.0.1",
105-
"vite-node": "^3.0.4"
104+
"unist": "^0.0.1",
105+
"vfile": "^6.0.1"
106106
},
107107
"browserslist": {
108108
"production": [

yarn.lock

Lines changed: 27 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -7282,9 +7282,9 @@ dot-prop@^6.0.1:
72827282
is-obj "^2.0.0"
72837283

72847284
dotenv@^16.4.5:
7285-
version "16.4.5"
7286-
resolved "https://registry.npmjs.org/dotenv/-/dotenv-16.4.5.tgz"
7287-
integrity sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==
7285+
version "16.4.7"
7286+
resolved "https://registry.yarnpkg.com/dotenv/-/dotenv-16.4.7.tgz#0e20c5b82950140aa99be360a8a5f52335f53c26"
7287+
integrity sha512-47qPchRCykZC03FhkYAhrvwU4xDBFIj1QPqaarj6mdM/hgUzfPHcpkHJOn3mJAufFeeAxAzeGsr5X0M4k6fLZQ==
72887288

72897289
duplexer@^0.1.2:
72907290
version "0.1.2"
@@ -7712,7 +7712,7 @@ estree-util-build-jsx@^3.0.0:
77127712

77137713
estree-util-is-identifier-name@^2.0.0:
77147714
version "2.1.0"
7715-
resolved "https://registry.npmjs.org/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz"
7715+
resolved "https://registry.yarnpkg.com/estree-util-is-identifier-name/-/estree-util-is-identifier-name-2.1.0.tgz#fb70a432dcb19045e77b05c8e732f1364b4b49b2"
77167716
integrity sha512-bEN9VHRyXAUOjkKVQVvArFym08BTWB0aJPppZZr0UNyAqWsLaVfAqP7hbaTJjzHifmB5ebnR8Wm7r7yGN/HonQ==
77177717

77187718
estree-util-is-identifier-name@^3.0.0:
@@ -7746,7 +7746,7 @@ estree-util-value-to-estree@^3.0.1:
77467746

77477747
estree-util-visit@^1.0.0:
77487748
version "1.2.1"
7749-
resolved "https://registry.npmjs.org/estree-util-visit/-/estree-util-visit-1.2.1.tgz"
7749+
resolved "https://registry.yarnpkg.com/estree-util-visit/-/estree-util-visit-1.2.1.tgz#8bc2bc09f25b00827294703835aabee1cc9ec69d"
77507750
integrity sha512-xbgqcrkIVbIG+lI/gzbvd9SGTJL4zqJKBFttUl5pP27KhAjtMKbX/mQXJ7qgyXpMgVy/zvpm0xoQQaGL8OloOw==
77517751
dependencies:
77527752
"@types/estree-jsx" "^1.0.0"
@@ -10390,7 +10390,7 @@ mdast-util-heading-style@^2.0.0:
1039010390

1039110391
mdast-util-mdx-expression@^1.0.0, mdast-util-mdx-expression@^1.1.0:
1039210392
version "1.3.2"
10393-
resolved "https://registry.npmjs.org/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz"
10393+
resolved "https://registry.yarnpkg.com/mdast-util-mdx-expression/-/mdast-util-mdx-expression-1.3.2.tgz#d027789e67524d541d6de543f36d51ae2586f220"
1039410394
integrity sha512-xIPmR5ReJDu/DHH1OoIT1HkuybIfRGYRywC+gJtI7qHjCJp/M9jrmBEJW22O8lskDWm562BX2W8TiAwRTb0rKA==
1039510395
dependencies:
1039610396
"@types/estree-jsx" "^1.0.0"
@@ -10413,7 +10413,7 @@ mdast-util-mdx-expression@^2.0.0:
1041310413

1041410414
mdast-util-mdx-jsx@^2.0.0:
1041510415
version "2.1.4"
10416-
resolved "https://registry.npmjs.org/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.4.tgz"
10416+
resolved "https://registry.yarnpkg.com/mdast-util-mdx-jsx/-/mdast-util-mdx-jsx-2.1.4.tgz#7c1f07f10751a78963cfabee38017cbc8b7786d1"
1041710417
integrity sha512-DtMn9CmVhVzZx3f+optVDF8yFgQVt7FghCRNdlIaS3X5Bnym3hZwPbg/XW86vdpKjlc1PVj26SpnLGeJBXD3JA==
1041810418
dependencies:
1041910419
"@types/estree-jsx" "^1.0.0"
@@ -10449,7 +10449,7 @@ mdast-util-mdx-jsx@^3.0.0:
1044910449

1045010450
mdast-util-mdx@^2.0.0:
1045110451
version "2.0.1"
10452-
resolved "https://registry.npmjs.org/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz"
10452+
resolved "https://registry.yarnpkg.com/mdast-util-mdx/-/mdast-util-mdx-2.0.1.tgz#49b6e70819b99bb615d7223c088d295e53bb810f"
1045310453
integrity sha512-38w5y+r8nyKlGvNjSEqWrhG0w5PmnRA+wnBvm+ulYCct7nsGYhFVb0lljS9bQav4psDAS1eGkP2LMVcZBi/aqw==
1045410454
dependencies:
1045510455
mdast-util-from-markdown "^1.0.0"
@@ -10471,7 +10471,7 @@ mdast-util-mdx@^3.0.0:
1047110471

1047210472
mdast-util-mdxjs-esm@^1.0.0:
1047310473
version "1.3.1"
10474-
resolved "https://registry.npmjs.org/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz"
10474+
resolved "https://registry.yarnpkg.com/mdast-util-mdxjs-esm/-/mdast-util-mdxjs-esm-1.3.1.tgz#645d02cd607a227b49721d146fd81796b2e2d15b"
1047510475
integrity sha512-SXqglS0HrEvSdUEfoXFtcg7DRl7S2cwOXc7jkuusG472Mmjag34DUDeOJUZtl+BVnyeO1frIgVpHlNRWc2gk/w==
1047610476
dependencies:
1047710477
"@types/estree-jsx" "^1.0.0"
@@ -10880,7 +10880,7 @@ micromark-extension-gfm@^3.0.0:
1088010880

1088110881
micromark-extension-mdx-expression@^1.0.0:
1088210882
version "1.0.8"
10883-
resolved "https://registry.npmjs.org/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz"
10883+
resolved "https://registry.yarnpkg.com/micromark-extension-mdx-expression/-/micromark-extension-mdx-expression-1.0.8.tgz#5bc1f5fd90388e8293b3ef4f7c6f06c24aff6314"
1088410884
integrity sha512-zZpeQtc5wfWKdzDsHRBY003H2Smg+PUi2REhqgIhdzAa5xonhP03FcXxqFSerFiNUr5AWmHpaNPQTBVOS4lrXw==
1088510885
dependencies:
1088610886
"@types/estree" "^1.0.0"
@@ -10908,7 +10908,7 @@ micromark-extension-mdx-expression@^3.0.0:
1090810908

1090910909
micromark-extension-mdx-jsx@^1.0.0:
1091010910
version "1.0.5"
10911-
resolved "https://registry.npmjs.org/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz"
10911+
resolved "https://registry.yarnpkg.com/micromark-extension-mdx-jsx/-/micromark-extension-mdx-jsx-1.0.5.tgz#e72d24b7754a30d20fb797ece11e2c4e2cae9e82"
1091210912
integrity sha512-gPH+9ZdmDflbu19Xkb8+gheqEDqkSpdCEubQyxuz/Hn8DOXiXvrXeikOoBA71+e8Pfi0/UYmU3wW3H58kr7akA==
1091310913
dependencies:
1091410914
"@types/acorn" "^4.0.0"
@@ -10941,7 +10941,7 @@ micromark-extension-mdx-jsx@^3.0.0:
1094110941

1094210942
micromark-extension-mdx-md@^1.0.0:
1094310943
version "1.0.1"
10944-
resolved "https://registry.npmjs.org/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz"
10944+
resolved "https://registry.yarnpkg.com/micromark-extension-mdx-md/-/micromark-extension-mdx-md-1.0.1.tgz#595d4b2f692b134080dca92c12272ab5b74c6d1a"
1094510945
integrity sha512-7MSuj2S7xjOQXAjjkbjBsHkMtb+mDGVW6uI2dBL9snOBCbZmoNgDAeZ0nSn9j3T42UE/g2xVNMn18PJxZvkBEA==
1094610946
dependencies:
1094710947
micromark-util-types "^1.0.0"
@@ -10955,7 +10955,7 @@ micromark-extension-mdx-md@^2.0.0:
1095510955

1095610956
micromark-extension-mdxjs-esm@^1.0.0:
1095710957
version "1.0.5"
10958-
resolved "https://registry.npmjs.org/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz"
10958+
resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs-esm/-/micromark-extension-mdxjs-esm-1.0.5.tgz#e4f8be9c14c324a80833d8d3a227419e2b25dec1"
1095910959
integrity sha512-xNRBw4aoURcyz/S69B19WnZAkWJMxHMT5hE36GtDAyhoyn/8TuAeqjFJQlwk+MKQsUD7b3l7kFX+vlfVWgcX1w==
1096010960
dependencies:
1096110961
"@types/estree" "^1.0.0"
@@ -10985,7 +10985,7 @@ micromark-extension-mdxjs-esm@^3.0.0:
1098510985

1098610986
micromark-extension-mdxjs@^1.0.0:
1098710987
version "1.0.1"
10988-
resolved "https://registry.npmjs.org/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz"
10988+
resolved "https://registry.yarnpkg.com/micromark-extension-mdxjs/-/micromark-extension-mdxjs-1.0.1.tgz#f78d4671678d16395efeda85170c520ee795ded8"
1098910989
integrity sha512-7YA7hF6i5eKOfFUzZ+0z6avRG52GpWR8DL+kN47y3f2KhxbBZMhmxe7auOeaTBrW2DenbbZTf1ea9tA2hDpC2Q==
1099010990
dependencies:
1099110991
acorn "^8.0.0"
@@ -11051,7 +11051,7 @@ micromark-factory-label@^2.0.0:
1105111051

1105211052
micromark-factory-mdx-expression@^1.0.0:
1105311053
version "1.0.9"
11054-
resolved "https://registry.npmjs.org/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz"
11054+
resolved "https://registry.yarnpkg.com/micromark-factory-mdx-expression/-/micromark-factory-mdx-expression-1.0.9.tgz#57ba4571b69a867a1530f34741011c71c73a4976"
1105511055
integrity sha512-jGIWzSmNfdnkJq05c7b0+Wv0Kfz3NJ3N4cBjnbO4zjXIlxJr+f8lk+5ZmwFvqdAbUy2q6B5rCY//g0QAAaXDWA==
1105611056
dependencies:
1105711057
"@types/estree" "^1.0.0"
@@ -11244,7 +11244,7 @@ micromark-util-encode@^2.0.0:
1124411244

1124511245
micromark-util-events-to-acorn@^1.0.0:
1124611246
version "1.2.3"
11247-
resolved "https://registry.npmjs.org/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz"
11247+
resolved "https://registry.yarnpkg.com/micromark-util-events-to-acorn/-/micromark-util-events-to-acorn-1.2.3.tgz#a4ab157f57a380e646670e49ddee97a72b58b557"
1124811248
integrity sha512-ij4X7Wuc4fED6UoLWkmo0xJQhsktfNh1J0m8g4PbIMPlx+ek/4YdW5mvbye8z/aZvAPUoxgXHrwVlXAPKMRp1w==
1124911249
dependencies:
1125011250
"@types/acorn" "^4.0.0"
@@ -13511,10 +13511,10 @@ rehackt@^0.1.0:
1351113511
resolved "https://registry.npmjs.org/rehackt/-/rehackt-0.1.0.tgz"
1351213512
integrity sha512-7kRDOuLHB87D/JESKxQoRwv4DzbIdwkAGQ7p6QKGdVlY1IZheUnVhlk/4UZlNUVxdAXpyxikE3URsG067ybVzw==
1351313513

13514-
rehype-highlight@^7.0.0:
13515-
version "7.0.1"
13516-
resolved "https://registry.npmjs.org/rehype-highlight/-/rehype-highlight-7.0.1.tgz"
13517-
integrity sha512-dB/vVGFsbm7xPglqnYbg0ABg6rAuIWKycTvuXaOO27SgLoOFNoTlniTBtAxp3n5ZyMioW1a3KwiNqgjkb6Skjg==
13514+
rehype-highlight@^7.0.2:
13515+
version "7.0.2"
13516+
resolved "https://registry.yarnpkg.com/rehype-highlight/-/rehype-highlight-7.0.2.tgz#997e05e3a336853f6f6b2cfc450c5dad0f960b07"
13517+
integrity sha512-k158pK7wdC2qL3M5NcZROZ2tR/l7zOzjxXd5VGdcfIyoijjQqpHd3JKtYSBDpDZ38UI2WJWuFAtkMDxmx5kstA==
1351813518
dependencies:
1351913519
"@types/hast" "^3.0.0"
1352013520
hast-util-to-text "^4.0.0"
@@ -14154,7 +14154,7 @@ remark-lint@^9.0.0:
1415414154

1415514155
remark-mdx@^2.1.1:
1415614156
version "2.3.0"
14157-
resolved "https://registry.npmjs.org/remark-mdx/-/remark-mdx-2.3.0.tgz"
14157+
resolved "https://registry.yarnpkg.com/remark-mdx/-/remark-mdx-2.3.0.tgz#efe678025a8c2726681bde8bf111af4a93943db4"
1415814158
integrity sha512-g53hMkpM0I98MU266IzDFMrTD980gNF3BJnkyFcmN+dD873mQeD5rdMO3Y2X+x8umQfbSE0PcoEDl7ledSA+2g==
1415914159
dependencies:
1416014160
mdast-util-mdx "^2.0.0"
@@ -15611,7 +15611,7 @@ unist-util-is@^6.0.0:
1561115611

1561215612
unist-util-position-from-estree@^1.0.0, unist-util-position-from-estree@^1.1.0:
1561315613
version "1.1.2"
15614-
resolved "https://registry.npmjs.org/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz"
15614+
resolved "https://registry.yarnpkg.com/unist-util-position-from-estree/-/unist-util-position-from-estree-1.1.2.tgz#8ac2480027229de76512079e377afbcabcfcce22"
1561515615
integrity sha512-poZa0eXpS+/XpoQwGwl79UUdea4ol2ZuCYguVaJS4qzIOMDzbqz8a3erUCOmubSZkaOuGamb3tX790iwOIROww==
1561615616
dependencies:
1561715617
"@types/unist" "^2.0.0"
@@ -15639,7 +15639,7 @@ unist-util-position@^5.0.0:
1563915639

1564015640
unist-util-remove-position@^4.0.0:
1564115641
version "4.0.2"
15642-
resolved "https://registry.npmjs.org/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz"
15642+
resolved "https://registry.yarnpkg.com/unist-util-remove-position/-/unist-util-remove-position-4.0.2.tgz#a89be6ea72e23b1a402350832b02a91f6a9afe51"
1564315643
integrity sha512-TkBb0HABNmxzAcfLf4qsIbFbaPDvMO6wa3b3j4VcEzFVaw1LBKwnW4/sRJ/atSLSzoIg41JWEdnE7N6DIhGDGQ==
1564415644
dependencies:
1564515645
"@types/unist" "^2.0.0"
@@ -15920,10 +15920,10 @@ vfile@^6.0.0, vfile@^6.0.1:
1592015920
"@types/unist" "^3.0.0"
1592115921
vfile-message "^4.0.0"
1592215922

15923-
vite-node@^3.0.4:
15924-
version "3.0.4"
15925-
resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-3.0.4.tgz#6db5bc4c182baf04986265d46bc3193c5491f41f"
15926-
integrity sha512-7JZKEzcYV2Nx3u6rlvN8qdo3QV7Fxyt6hx+CCKz9fbWxdX5IvUOmTWEAxMrWxaiSf7CKGLJQ5rFu8prb/jBjOA==
15923+
vite-node@^3.0.5:
15924+
version "3.0.5"
15925+
resolved "https://registry.yarnpkg.com/vite-node/-/vite-node-3.0.5.tgz#6a0d06f7a4bdaae6ddcdedc12d910d886cf7d62f"
15926+
integrity sha512-02JEJl7SbtwSDJdYS537nU6l+ktdvcREfLksk/NDAqtdKWGqHl+joXzEubHROmS3E6pip+Xgu2tFezMu75jH7A==
1592715927
dependencies:
1592815928
cac "^6.7.14"
1592915929
debug "^4.4.0"

0 commit comments

Comments
 (0)