interlockjs / interlock

JS bundler - inspired by Git, built on Babel.
MIT License
72 stars 7 forks source link

Attache `CONTINUE` symbol to `override` function #41

Closed divmain closed 9 years ago

divmain commented 9 years ago

Currently, plugin function definitions look like:

function (override, transform, control) {
   // maybe do something with control.CONTINUE    
};

Instead, remove control and add pertinent symbols to the related functions. So:

function (override, transform) {
   // maybe do something with override.CONTINUE    
};