2 Commits

Author SHA1 Message Date
46693c4bef 1.0.4 2016-10-12 14:15:31 +02:00
cd7361bb96 improve README 2016-10-12 14:15:27 +02:00
2 changed files with 2 additions and 2 deletions

View File

@ -27,7 +27,7 @@ import * as _myPlugin from 'myPlugin' // plugin does not get loaded here at runt
let myPluginLazy = new LazyModule<typeof _myPlugin>('myPlugin')
import * as _anotherPlugin from 'anotherPlugin' // plugin does not get loaded here at runtime
let anotherPluginPromised = LazyModule<typeof _anotherPlugin>('anotherPlugin')
let anotherPluginLazy = new LazyModule<typeof _anotherPlugin>('anotherPlugin')
myPluginLazy.whenLoaded.then(myPlugin => {
/* do something with myPlugin.

View File

@ -1,6 +1,6 @@
{
"name": "smartsystem",
"version": "1.0.3",
"version": "1.0.4",
"description": "wraps systemjs for smarter workflows",
"main": "dist/index.js",
"typings": "dist/index.d.ts",