Skip to content

Commit 7752d46

Browse files
authored
General cleanup (#209)
* Updated README, updated dependencies * Fixed warning, upgraded dependencies * Fix links for the blog mode * Fixed 0.20 changelog link
1 parent ed37ced commit 7752d46

File tree

6 files changed

+622
-581
lines changed

6 files changed

+622
-581
lines changed

README.md

Lines changed: 10 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -1,41 +1,30 @@
1-
# Website
1+
# Boa Website
22

3-
This website is built using [Docusaurus 2](https://docusaurus.io/), a modern static website generator.
3+
This is the website for the Boa project, a JavaScript engine written in Rust. The website provides documentation, tutorials, and other resources for users and contributors.
4+
You can find it at [boajs.dev](https://boajs.dev).
5+
6+
## Contributing
7+
8+
This website is built using [Docusaurus 3](https://docusaurus.io/), a modern static website generator.
49

510
### Installation
611

712
```
8-
$ npm
13+
$ npm install
914
```
1015

1116
### Local Development
1217

1318
```
14-
$ npm start
19+
$ npm run start
1520
```
1621

1722
This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.
1823

1924
### Build
2025

2126
```
22-
$ npm build
27+
$ npm run build
2328
```
2429

2530
This command generates static content into the `build` directory and can be served using any static contents hosting service.
26-
27-
### Deployment
28-
29-
Using SSH:
30-
31-
```
32-
$ USE_SSH=true npm run deploy
33-
```
34-
35-
Not using SSH:
36-
37-
```
38-
$ GIT_USER=<Your GitHub username> npm run deploy
39-
```
40-
41-
If you are using GitHub pages for hosting, this command is a convenient way to build the website and push to the `gh-pages` branch.

blog/2024-07-09-boa-release-19.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ Overall, Boa's conformance in real terms has improved by ~6%.
2121
You can check the full list of changes [here][changelog], and the full information on conformance
2222
[here][conformance].
2323

24+
[changelog]: https://github.com/boa-dev/boa/blob/v0.19/CHANGELOG.md
25+
[conformance]: /conformance
26+
2427
<!--truncate-->
2528

2629
## Highlights
@@ -209,8 +212,6 @@ itself and for users of the engine. Feel free to contact us in [Matrix].
209212
Once again, big thanks to [all the contributors][contributors] of this release!!
210213

211214
[contributors]: https://github.com/boa-dev/boa/graphs/contributors?from=2024-03-05&to=2024-07-11&type=c
212-
[changelog]: https://github.com/boa-dev/boa/blob/v0.19/CHANGELOG.md
213-
[conformance]: /conformance
214215
[collective]: https://opencollective.com/boa
215216
[easy_issues]: https://github.com/boa-dev/boa/issues?q=is%3Aopen+is%3Aissue+label%3AE-Easy
216217
[first_issues]: https://github.com/boa-dev/boa/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22

blog/2024-12-05-boa-release-020/index.mdx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ In this release, our conformance has grown from 87.3% to 89.92% in the official
1818
You can check the full list of changes [here][changelog], and the full information on conformance
1919
[here][conformance].
2020

21+
[changelog]: https://github.com/boa-dev/boa/blob/v0.20/CHANGELOG.md
22+
[conformance]: /conformance
23+
2124
<!--truncate-->
2225

2326
## Feature Highlights
@@ -209,8 +212,6 @@ itself and for users of the engine. Feel free to contact us in [Matrix].
209212
Once again, big thanks to [all the contributors][contributors] of this release!!
210213

211214
[contributors]: https://github.com/boa-dev/boa/graphs/contributors?from=2024-03-05&to=2024-07-11&type=c
212-
[changelog]: https://github.com/boa-dev/boa/blob/v0.19/CHANGELOG.md
213-
[conformance]: /conformance
214215
[collective]: https://opencollective.com/boa
215216
[easy_issues]: https://github.com/boa-dev/boa/issues?q=is%3Aopen+is%3Aissue+label%3AE-Easy
216217
[first_issues]: https://github.com/boa-dev/boa/issues?q=is%3Aopen+is%3Aissue+label%3A%22good+first+issue%22

blog/2025-06-15-temporal-impl-1.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,8 @@ First, an aside!
3030
Temporal is a modern API for handling date/time in a calendar and time
3131
zone aware manner that includes nine objects with over 200+ methods.
3232

33+
<!-- truncate -->
34+
3335
In JavaScript, Temporal is a global built-in namespace object that
3436
includes each of these nine built-ins:
3537

0 commit comments

Comments
 (0)