nwb
Version:
A toolkit for React, Preact & Inferno apps, React libraries and other npm modules for the web, with no configuration (until you need it)
21 lines (15 loc) • 496 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = serveWeb;
var _quickCommands = require("../quickCommands");
var _web = _interopRequireDefault(require("../web"));
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**
* Serve a standalone vanilla JavaScript app.
*/
function serveWeb(args, cb) {
(0, _quickCommands.serve)(args, (0, _web.default)(args), cb);
}
module.exports = exports.default;