Hi,
Following the instructions for a custom Webix build, the output from “npm run build” is a bit different from the distributed webix.js
For example it has a large section
var REACT_ELEMENT_TYPE;
function _jsx(type, props, key, children) {
...
and functions are declared as
exports.extend = function extend(base, source, force) {
instead of
exports.extend = function (base, source, force) {
What do I need to do to get the same build output as the distributed one?
Thanks
Emil