Skip to content

Commit

Permalink
ast types exported
Browse files Browse the repository at this point in the history
+ 1.0.7 version bump
  • Loading branch information
michal-kapala committed Mar 27, 2024
1 parent 533e4f3 commit bf69a0a
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "jitterbit-script",
"version": "1.0.6",
"version": "1.0.7",
"description": "Static typechecker and interpreter for Jitterbit Script",
"main": "build/index.js",
"scripts": {
Expand Down
3 changes: 2 additions & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ import Scope from "./runtime/scope";
import evaluate from "./runtime/interpreter";
import { CodeAnalysis } from "./typechecker/ast";
import Typechecker from "./typechecker/typechecker";
import * as Ast from "./typechecker/ast";

export {Api, Func, Parser, Scope, evaluate, Typechecker, Diagnostic, CodeAnalysis};
export {Api, Func, Parser, Scope, evaluate, Typechecker, Diagnostic, CodeAnalysis, Ast};

0 comments on commit bf69a0a

Please sign in to comment.