Comparing version 2.0.1 to 2.0.2
export * from './states/index'; | ||
export * from './fields/index'; | ||
export { StateMachine } from './StateMachine'; | ||
export * from './hydrators'; | ||
export * from './StateMachine'; |
@@ -8,3 +8,3 @@ "use strict"; | ||
__export(require("./fields/index")); | ||
var StateMachine_1 = require("./StateMachine"); | ||
exports.StateMachine = StateMachine_1.StateMachine; | ||
__export(require("./hydrators")); | ||
__export(require("./StateMachine")); |
{ | ||
"name": "flowbject", | ||
"version": "2.0.1", | ||
"version": "2.0.2", | ||
"description": "Flowbject is a library that allows you to describe state machines with objects.", | ||
@@ -5,0 +5,0 @@ "main": "./dist/index.js", |
@@ -25,5 +25,3 @@ # Flowbject | ||
const helloWorld = (new Pass('HelloWorld')) | ||
.result.set('Hello World!') | ||
.next.end(); | ||
const helloWorld = (new Pass('HelloWorld')).result.set('Hello World!') | ||
@@ -30,0 +28,0 @@ stateMachine.states.add(helloWorld); |
6698
268395
48