Skip to content

Commit

Permalink
added the solution for the possible error during yarn installation on…
Browse files Browse the repository at this point in the history
… Windows OS (#453)

Signed-off-by: ilikmeister <akhmet.i27@gmail.com>
  • Loading branch information
ilikmeister authored Mar 24, 2023
1 parent 790f610 commit eaeecec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ Inspired from [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
- Added required `array` argument when invoking `SerializationError` ([#419](https://github.com/opensearch-project/opensearch-js/pull/419))
- Removed unnecessary `data` argument when invoking `OpenSearchClientError` ([#421](https://github.com/opensearch-project/opensearch-js/pull/421))
- Fixed typos in `ConnectionPool` ([#427](https://github.com/opensearch-project/opensearch-js/pull/427))
- Added the solution for the possible error during yarn installation on Windows OS ([#435](https://github.com/opensearch-project/opensearch-js/issues/435))

### Dependencies

Expand Down
10 changes: 10 additions & 0 deletions DEVELOPER_GUIDE.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,16 @@ To install all the dependencies needed for this project, run
```
yarn install
```
There might be an issue on Windows OS:
```
yarn. ps1 cannot be loaded because running scripts is disabled on this system
```
If it occurs, open Windows PowerShell as an administrator and run:
```
Set-ExecutionPolicy unrestricted
```
Then type `Y`
Now you can run `yarn install`

### Using ESLint

Expand Down

0 comments on commit eaeecec

Please sign in to comment.