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) • 538 B
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.default = buildInferno;
var _inferno = _interopRequireDefault(require("../inferno"));
var _quickCommands = require("../quickCommands");
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; }
/**
* Build a standalone Inferno app entry module, component or VNode.
*/
function buildInferno(args, cb) {
(0, _quickCommands.build)(args, (0, _inferno.default)(args), cb);
}
module.exports = exports.default;