11 lines
232 B
JavaScript
Raw Normal View History

2022-10-03 12:10:40 -04:00
const { checkActionsLoaded } = require('./dist/preset/checkActionsLoaded');
2021-07-09 11:50:23 +02:00
function previewAnnotations(entry = [], options) {
checkActionsLoaded(options.configDir);
return entry;
2021-08-27 23:06:07 +02:00
}
2021-07-09 11:50:23 +02:00
module.exports = {
previewAnnotations,
2021-07-09 11:50:23 +02:00
};