Skip to content

Commit 64b5742

Browse files
committed
spring cleaning
1 parent 9bcf523 commit 64b5742

19 files changed

Lines changed: 1407 additions & 1093 deletions

.github/FUNDING.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# These are supported funding model platforms
22

3-
github: [devsnek] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
3+
github: [
4+
devsnek,
5+
] # Replace with up to 4 GitHub Sponsors-enabled usernames e.g., [user1, user2]
46
patreon: # Replace with a single Patreon username
57
open_collective: # Replace with a single Open Collective username
68
ko_fi: # Replace with a single Ko-fi username

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
test:
77
strategy:
88
matrix:
9-
os: [ubuntu-latest, windows-latest]
9+
os: [ubuntu-latest, windows-latest, macos-latest]
1010
# https://nodejs.org/en/about/releases/
11-
node: [18, 20, 21, 22]
11+
node: [20, 22, 24, 25]
1212
runs-on: ${{ matrix.os }}
1313
steps:
1414
# https://github.com/actions/checkout/issues/135

CODE_OF_CONDUCT.md

Lines changed: 27 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -5,43 +5,43 @@
55
In the interest of fostering an open and welcoming environment, we as
66
contributors and maintainers pledge to making participation in our project and
77
our community a harassment-free experience for everyone, regardless of age, body
8-
size, disability, ethnicity, sex characteristics, gender identity and expression,
9-
level of experience, education, socio-economic status, nationality, personal
10-
appearance, race, religion, or sexual identity and orientation.
8+
size, disability, ethnicity, sex characteristics, gender identity and
9+
expression, level of experience, education, socio-economic status, nationality,
10+
personal appearance, race, religion, or sexual identity and orientation.
1111

1212
## Our Standards
1313

1414
Examples of behavior that contributes to creating a positive environment
1515
include:
1616

17-
* Using welcoming and inclusive language
18-
* Being respectful of differing viewpoints and experiences
19-
* Gracefully accepting constructive criticism
20-
* Focusing on what is best for the community
21-
* Showing empathy towards other community members
17+
- Using welcoming and inclusive language
18+
- Being respectful of differing viewpoints and experiences
19+
- Gracefully accepting constructive criticism
20+
- Focusing on what is best for the community
21+
- Showing empathy towards other community members
2222

2323
Examples of unacceptable behavior by participants include:
2424

25-
* The use of sexualized language or imagery and unwelcome sexual attention or
26-
advances
27-
* Trolling, insulting/derogatory comments, and personal or political attacks
28-
* Public or private harassment
29-
* Publishing others' private information, such as a physical or electronic
30-
address, without explicit permission
31-
* Other conduct which could reasonably be considered inappropriate in a
32-
professional setting
25+
- The use of sexualized language or imagery and unwelcome sexual attention or
26+
advances
27+
- Trolling, insulting/derogatory comments, and personal or political attacks
28+
- Public or private harassment
29+
- Publishing others' private information, such as a physical or electronic
30+
address, without explicit permission
31+
- Other conduct which could reasonably be considered inappropriate in a
32+
professional setting
3333

3434
## Our Responsibilities
3535

3636
Project maintainers are responsible for clarifying the standards of acceptable
3737
behavior and are expected to take appropriate and fair corrective action in
3838
response to any instances of unacceptable behavior.
3939

40-
Project maintainers have the right and responsibility to remove, edit, or
41-
reject comments, commits, code, wiki edits, issues, and other contributions
42-
that are not aligned to this Code of Conduct, or to ban temporarily or
43-
permanently any contributor for other behaviors that they deem inappropriate,
44-
threatening, offensive, or harmful.
40+
Project maintainers have the right and responsibility to remove, edit, or reject
41+
comments, commits, code, wiki edits, issues, and other contributions that are
42+
not aligned to this Code of Conduct, or to ban temporarily or permanently any
43+
contributor for other behaviors that they deem inappropriate, threatening,
44+
offensive, or harmful.
4545

4646
## Scope
4747

@@ -58,17 +58,19 @@ Instances of abusive, harassing, or otherwise unacceptable behavior may be
5858
reported by contacting the project team at devsnek@users.noreply.github.com. All
5959
complaints will be reviewed and investigated and will result in a response that
6060
is deemed necessary and appropriate to the circumstances. The project team is
61-
obligated to maintain confidentiality with regard to the reporter of an incident.
62-
Further details of specific enforcement policies may be posted separately.
61+
obligated to maintain confidentiality with regard to the reporter of an
62+
incident. Further details of specific enforcement policies may be posted
63+
separately.
6364

6465
Project maintainers who do not follow or enforce the Code of Conduct in good
6566
faith may face temporary or permanent repercussions as determined by other
6667
members of the project's leadership.
6768

6869
## Attribution
6970

70-
This Code of Conduct is adapted from the [Contributor Covenant][homepage], version 1.4,
71-
available at https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
71+
This Code of Conduct is adapted from the [Contributor Covenant][homepage],
72+
version 1.4, available at
73+
https://www.contributor-covenant.org/version/1/4/code-of-conduct.html
7274

7375
[homepage]: https://www.contributor-covenant.org
7476

README.md

Lines changed: 10 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ esvu is your one-stop shop for all implementations of ECMAScript.
88
$ npm i -g esvu
99
```
1010

11-
esvu will attempt to respect `XDG_DATA_HOME`, and will fall back to the
12-
home directory. You will need to add esvu's bin to your `PATH`, for
13-
example `$XDG_DATA_HOME/.esvu/bin` or `/home/snek/.esvu/bin`.
11+
esvu will attempt to respect `XDG_DATA_HOME`, and will fall back to the home
12+
directory. You will need to add esvu's bin to your `PATH`, for example
13+
`$XDG_DATA_HOME/.esvu/bin` or `/home/snek/.esvu/bin`.
1414

1515
You may override the path entirely by setting the `ESVU_PATH` environment
1616
variable.
@@ -21,43 +21,14 @@ The first time you run `esvu`, it will ask you which engines you wish to
2121
install. After the first run, running `esvu` will update the engines you
2222
selected.
2323

24-
- `$ esvu`
25-
Update all installed engines, or select engines to install
26-
- `$ esvu install <engine>`
27-
Install the engine `<engine>`
28-
- `$ esvu uninstall <engine>`
29-
Uninstall `<engine>`
30-
- `$ esvu update <engine>`
31-
Update `<engine>`. Like `install` but the engine must have been previously
32-
installed.
24+
- `$ esvu` Update all installed engines, or select engines to install
25+
- `$ esvu install <engine>` Install the engine `<engine>`
26+
- `$ esvu uninstall <engine>` Uninstall `<engine>`
27+
- `$ esvu update <engine>` Update `<engine>`. Like `install` but the engine must
28+
have been previously installed.
3329

3430
If you're using [eshost-cli][], you can run `eshost --configure-esvu` after
3531
installing engines to make eshost automatically find the installed engines.
3632

37-
| Engine | Binary Names | `darwin-x64` | `darwin-arm64` | `linux-ia32` | `linux-x64` | `linux-arm64` | `win32-ia32` | `win32-x64` |
38-
| ------------------ | -------------------------------- | ------------ | -------------- | ------------ | ----------- | ------------- | ------------ | ----------- |
39-
| [Boa][] | `boa`, || | || | ||
40-
| [engine262][] | `engine262` ||||||||
41-
| [GraalJS][] | `graaljs` ||| ||| ||
42-
| [Hermes][] | `hermes` ||| | | | ||
43-
| [LibJS][] | `ladybird-js` ||| || | | |
44-
| [JavaScriptCore][] | `jsc`, `javascriptcore` ||| || | ||
45-
| [QuickJS][] | `quickjs`, `quickjs-run-test262` || ||| |||
46-
| [SpiderMonkey][] | `sm`, `spidermonkey` ||||| |||
47-
| [V8][] | `v8` ||||| |||
48-
| [XS][] | `xs` ||| ||| ||
49-
50-
Some binaries may be exposed as batch/shell scripts to properly handling shared library loading. Some binaries on
51-
64-bit systems may be natively 32-bit.
52-
53-
[Boa]: https://boajs.dev/
54-
[eshost-cli]: https://github.com/bterlson/eshost-cli
55-
[engine262]: https://engine262.js.org
56-
[GraalJS]: https://github.com/graalvm/graaljs
57-
[Hermes]: https://hermesengine.dev
58-
[LibJS]: https://github.com/ladybirdbrowser/ladybird
59-
[JavaScriptCore]: https://developer.apple.com/documentation/javascriptcore
60-
[QuickJS]: https://bellard.org/quickjs/
61-
[SpiderMonkey]: https://developer.mozilla.org/en-US/docs/Mozilla/Projects/SpiderMonkey
62-
[V8]: https://v8.dev
63-
[XS]: https://www.moddable.com/
33+
Some binaries may be exposed as batch/shell scripts to properly handling shared
34+
library loading. Some binaries on 64-bit systems may be natively 32-bit.

0 commit comments

Comments
 (0)