Skip to content

Commit

Permalink
Remove all references to the development docs
Browse files Browse the repository at this point in the history
  • Loading branch information
jedel1043 committed Apr 4, 2024
1 parent ba8d8ed commit 8d53d1e
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 20 deletions.
4 changes: 1 addition & 3 deletions blog/2023-07-08-boa-release-17.md
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ Boa now has internationalization support! Although we are still working on full
- [`Intl.Segmenter`][segmenter]

Internationalization data can be pretty expensive at times: the default data included by Boa is 10.6 MB, which is why
we allow customizing the data provider used by the engine with the [`ContextBuilder::icu_provider`][ctx_provider] hook.
we allow customizing the data provider used by the engine with the `ContextBuilder::icu_provider` hook.
For more information on how to generate custom internationalization data, you can check out the
[**data management tutorial**][data] from [`icu4x`], the internationalization library used in Boa. Shoutout to the
`icu4x` team, who are the ones that made all of this possible!
Expand All @@ -270,8 +270,6 @@ size.
[list]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/ListFormat
[locale]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Collator
[segmenter]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Intl/Segmenter
[provider]: https://boajs.dev/boa/doc/boa_engine/context/enum.BoaProvider.html
[ctx_provider]: https://boajs.dev/boa/doc/boa_engine/context/struct.ContextBuilder.html#method.icu_provider
[data]: https://github.com/unicode-org/icu4x/blob/main/docs/tutorials/data_management.md#data-management-in-icu4x
[`icu4x`]: https://github.com/unicode-org/icu4x

Expand Down
5 changes: 0 additions & 5 deletions docs/contributing/CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,6 @@ Boa has some pre-defined tasks in ".vscode/tasks.json"
If you don't want to install everything on your machine, you can use the Dockerfile.
Start VSCode in container mode (you may need the docker container plugin) and use the Dockerfile.

## Documentation

We have specific documentation for development, updated on each commit to the `main` branch, with all the private
methods visible here: https://boajs.dev/boa/doc/

## Communication

We have a Discord server, feel free to ask questions [here](https://discord.gg/tUFFk9Y)
Expand Down
6 changes: 1 addition & 5 deletions docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -117,13 +117,9 @@ const config: Config = {
to: "/docs/intro",
},
{
label: "Release API",
label: "API Documentation",
href: "https://docs.rs/boa_engine/latest",
},
{
label: "Development API",
href: "https://boajs.dev/boa/doc/boa_engine/index.html",
},
],
},
{
Expand Down
8 changes: 1 addition & 7 deletions src/components/home/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,13 +30,7 @@ function HomepageHeader() {
className={"button button--secondary " + styles.buttonMargin}
href="https://docs.rs/boa_engine/latest/boa_engine/"
>
Release Documentation
</Link>
<Link
className={"button button--secondary " + styles.buttonMargin}
href="https://boajs.dev/boa/doc/boa_engine/index.html"
>
Dev Documentation
Documentation
</Link>
</div>
</div>
Expand Down

0 comments on commit 8d53d1e

Please sign in to comment.