diff --git a/package.json b/package.json index 813b25e..52ac2ee 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@weiroll/weiroll.js", - "version": "0.1.0", + "version": "0.1.1", "description": "The weiroll planner in JS", "main": "dist/index.js", "types": "dist/index.d.ts", diff --git a/src/index.ts b/src/index.ts index e035436..5da8d38 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,10 +6,7 @@ export { ContractFunction, FunctionCall, Value, - StaticValue, - ReturnValue -} from './contract'; - -export { + LiteralValue, + ReturnValue, Planner } from './planner'; \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 694d472..21979fc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,7 +3,7 @@ "outDir": "./dist/", "sourceMap": true, "noImplicitAny": true, - "module": "es6", + "module": "commonjs", "target": "es5", "jsx": "react", "allowJs": true,