Skip to content

Commit

Permalink
update npm version, fix export target
Browse files Browse the repository at this point in the history
  • Loading branch information
kennethanCeyer committed Apr 6, 2018
1 parent b49be8f commit 0d92fc5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "formulize",
"version": "0.0.9",
"version": "0.0.10",
"description": "formula UI generator",
"main": "dist/formulize.umd.js",
"typings": "dist/types/formulize.d.ts",
Expand Down
3 changes: 2 additions & 1 deletion src/formulize.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ import { pluginBinder } from './formulize.plugin';

export { UI } from './ui/ui';
export * from './global';
export * from 'metric-parser/dist/types';
export * from 'metric-parser/dist/types/ast.d';
export * from 'metric-parser/dist/types/tree/simple.tree/type.d';

pluginBinder();
2 changes: 1 addition & 1 deletion src/global.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
const _MODULE_VERSION_ = '0.0.9';
const _MODULE_VERSION_ = '0.0.10';

export function getVersion(): string {
return _MODULE_VERSION_;
Expand Down

0 comments on commit 0d92fc5

Please sign in to comment.