Skip to content

Commit

Permalink
0.0.25
Browse files Browse the repository at this point in the history
  • Loading branch information
wessberg committed Mar 1, 2020
1 parent 25d7ced commit a634478
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,12 @@
## [0.0.25](https://github.com/wessberg/ts-evaluator/compare/v0.0.24...v0.0.25) (2020-03-01)


### Features

* add support for TypeScript v3.8. Add support for passing a specific TypeScript version to the evaluate function. Remove dependency on deasync. Return a Promise when evaluating an await-expression. Disallow evaluating async iterators with the synchronous variant of evaluate ([c19e1cc](https://github.com/wessberg/ts-evaluator/commit/c19e1cca6ba84c38bbb63f3c0a8db8f0722a2e63))



## [0.0.24](https://github.com/wessberg/ts-evaluator/compare/v0.0.23...v0.0.24) (2019-11-09)


Expand Down
3 changes: 2 additions & 1 deletion README.md
Expand Up @@ -73,6 +73,7 @@ If you are looking for a Typescript REPL, or a way to _execute_ a full Typescrip
- [Setting up an environment](#setting-up-an-environment)
- [Setting up Policies](#setting-up-policies)
- [Custom TypeScript version](#custom-typescript-version)
- [Logging](#logging)
- [Reporting](#reporting)
- [Contributing](#contributing)
- [Maintainers](#maintainers)
Expand Down Expand Up @@ -231,7 +232,7 @@ const result = evaluate({
// ...
logLevel: LogLevelKind.DEBUG
});
````
```

Here's an explainer of the different log levels:

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,6 +1,6 @@
{
"name": "@wessberg/ts-evaluator",
"version": "0.0.24",
"version": "0.0.25",
"description": "An interpreter for Typescript that can evaluate an arbitrary Node within a Typescript AST",
"scripts": {
"generate:scaffold": "scaffold all --yes",
Expand Down

0 comments on commit a634478

Please sign in to comment.