UNPKG

assetgraph-builder-esprima

Version:

Build system for web sites and applications

11 lines (10 loc) 366 B
module.exports = function (queryObj) { return function removeNobundleAttribute(assetGraph) { assetGraph.findRelations(queryObj).forEach(function (relation) { if (relation.node.hasAttribute('nobundle')) { relation.node.removeAttribute('nobundle'); relation.from.markDirty(); } }); }; };