Skip to content

Instantly share code, notes, and snippets.

@niabot
niabot / app.js
Created May 10, 2016 18:38
SystemJS gives up if bundles option is used
// Neither then() or catch() are called back by SystemJS
System.import('asysshop')
.then(function (shop) {
shop.start();
})
.catch(function (err) {
console.log(err);
});