From b7b9bd8cc3f59c58fd87301fcf0ede9f4a58ff6b Mon Sep 17 00:00:00 2001 From: Victor Adossi Date: Mon, 25 Nov 2024 22:20:03 +0900 Subject: [PATCH 1/2] feat: add page to hold additional references Signed-off-by: Victor Adossi --- component-model/src/SUMMARY.md | 6 +++++- component-model/src/reference/useful-links.md | 17 +++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 component-model/src/reference/useful-links.md diff --git a/component-model/src/SUMMARY.md b/component-model/src/SUMMARY.md index 0b0fa72..11b14f6 100644 --- a/component-model/src/SUMMARY.md +++ b/component-model/src/SUMMARY.md @@ -35,4 +35,8 @@ # Advanced Topics -- [Canonical ABI](./advanced/canonical-abi.md) \ No newline at end of file +- [Canonical ABI](./advanced/canonical-abi.md) + +# Reference + +- [Useful Links](./reference/useful-links.md) diff --git a/component-model/src/reference/useful-links.md b/component-model/src/reference/useful-links.md new file mode 100644 index 0000000..21fe263 --- /dev/null +++ b/component-model/src/reference/useful-links.md @@ -0,0 +1,17 @@ +# Useful links + +The following references are helpful in understanding the Component Model and related ecosystem/projects. + +- [`WebAssembly/component-model` GitHub Repository][wasm-cm-repo] + - [Component Model AST Explainer][ast-explainer] + - [Canonical ABI Explainer][canonical-abi] +- [WASI Preview 2][wasi-p2] +- [WebAssembly Composition tool (`wac`)][wac] +- [WebAssembly package tools (notably `wkg`)][wkg] + +[wasm-cm-repo]: https://github.com/WebAssembly/component-model +[wasi-p2]: https://github.com/WebAssembly/WASI/tree/main/wasip2 +[ast-explainer]: https://github.com/WebAssembly/component-model/blob/main/design/mvp/Explainer.md +[canonical-abi]: https://github.com/WebAssembly/component-model/blob/main/design/mvp/CanonicalABI.md +[wac]: https://github.com/bytecodealliance/wac +[wkg]: https://github.com/bytecodealliance/wasm-pkg-tools From 4117f269c91ba6f9161735a643aed28175d4dcc5 Mon Sep 17 00:00:00 2001 From: Victor Adossi Date: Fri, 6 Dec 2024 06:13:57 +0900 Subject: [PATCH 2/2] fix: remove 'explainer' language Signed-off-by: Victor Adossi --- component-model/src/reference/useful-links.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/component-model/src/reference/useful-links.md b/component-model/src/reference/useful-links.md index 21fe263..e7b63c4 100644 --- a/component-model/src/reference/useful-links.md +++ b/component-model/src/reference/useful-links.md @@ -2,12 +2,12 @@ The following references are helpful in understanding the Component Model and related ecosystem/projects. -- [`WebAssembly/component-model` GitHub Repository][wasm-cm-repo] - - [Component Model AST Explainer][ast-explainer] - - [Canonical ABI Explainer][canonical-abi] -- [WASI Preview 2][wasi-p2] - [WebAssembly Composition tool (`wac`)][wac] - [WebAssembly package tools (notably `wkg`)][wkg] +- [WASI Preview 2][wasi-p2] +- [Component Model internals][wasm-cm-repo] + - [Component Model AST][ast-explainer] + - [Canonical ABI][canonical-abi] [wasm-cm-repo]: https://github.com/WebAssembly/component-model [wasi-p2]: https://github.com/WebAssembly/WASI/tree/main/wasip2