Skip to content

Commit 3820363

Browse files
committedMar 4, 2025
Merge remote-tracking branch 'origin/master' into remove-concurrent
2 parents 2a44e60 + 6aad26c commit 3820363

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Open-source implementations of the programming language _Source_. Source is a se
2222

2323
- NodeJS v20
2424
- Python: On MacBook Pro with chip Apple M1 Pro, use python 3.10.12. Here is [the correct way to set Python 3 as default on a Mac](https://opensource.com/article/19/5/python-3-default-mac).
25-
25+
- yarn: use the version specified in `package.json`. On macos, you may need to run `corepack enable`.
2626
## Usage
2727

2828
To build,
@@ -130,7 +130,7 @@ Documentation of libraries is displayed in autocomplete in the frontend. This do
130130
`js-slang` comes with an extensive test suite. To run the tests after you made your modifications, run `yarn test`. Regression tests are run automatically when you want to push changes to this repository. The regression tests are generated using `jest` and stored as snapshots in `src/\_\_tests\_\_`. After modifying `js-slang`, carefully inspect any failing regression tests reported in red in the command line. If you are convinced that the regression tests and not your changes are at fault, you can update the regression tests as follows:
131131

132132
```bash
133-
$ yarn test -- --updateSnapshot
133+
$ yarn test --updateSnapshot
134134
```
135135

136136
## Error messages

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "js-slang",
3-
"version": "1.0.80",
3+
"version": "1.0.81",
44
"license": "Apache-2.0",
55
"description": "Javascript-based implementations of Source, written in Typescript",
66
"keywords": [

0 commit comments

Comments
 (0)
Please sign in to comment.