UNPKG

cordova-elm-template-jumpstart

Version:

Cordova template to jumpstart development using Elm and Webpack

16 lines (13 loc) 376 B
/* * This file contains the code that wires up the "outside world" to our application, launches the Elm application * (and its dependencies), and handles otherwise unhandled errors. * */ import Promise from "bluebird"; Promise.try( () => require("./init.js") ).then( () => require("./launchElm.js") ).catch(e => { console.error("Top-level error", e); throw e; })