Skip to content

Migration guide from v3.x to v4.x

Slava Oliyanchuk edited this page Oct 19, 2016 · 4 revisions

v4.0.0 release notes

Steps to migrate

Use

block('b1').wrap()(function() {
  return {
    block: 'wrap',
    content: this.ctx
  };
});

instead of

block('b1').wrap().def()(function() {
  return applyCtx({
    block: 'wrap',
    content: this.ctx
  });
});