Tom Coleman b8d5b1e7e3 Move inferControls from the controls addon back into the store
For backwards compatibility reasons, we will undo this commit in 7.0
2021-09-03 13:00:18 +10:00

9 lines
288 B
JavaScript

const { ensureDocsBeforeControls } = require('./dist/cjs/preset/ensureDocsBeforeControls');
function managerEntries(entry = [], options) {
ensureDocsBeforeControls(options.configDir);
return [...entry, require.resolve('./dist/esm/register')];
}
module.exports = { managerEntries };