Revert "Add yet-another-react-lightbox package and update .gitignore to exclude node_modules"
This reverts commit c92f4a5edd.
This commit is contained in:
22
frontend/node_modules/@svgr/babel-plugin-remove-jsx-attribute/dist/index.js
generated
vendored
Normal file
22
frontend/node_modules/@svgr/babel-plugin-remove-jsx-attribute/dist/index.js
generated
vendored
Normal file
@@ -0,0 +1,22 @@
|
||||
'use strict';
|
||||
|
||||
var core = require('@babel/core');
|
||||
|
||||
const removeJSXAttribute = (_, opts) => ({
|
||||
visitor: {
|
||||
JSXOpeningElement(path) {
|
||||
if (!core.types.isJSXIdentifier(path.node.name))
|
||||
return;
|
||||
if (!opts.elements.includes(path.node.name.name))
|
||||
return;
|
||||
path.get("attributes").forEach((attribute) => {
|
||||
if (core.types.isJSXAttribute(attribute.node) && core.types.isJSXIdentifier(attribute.node.name) && opts.attributes.includes(attribute.node.name.name)) {
|
||||
attribute.remove();
|
||||
}
|
||||
});
|
||||
}
|
||||
}
|
||||
});
|
||||
|
||||
module.exports = removeJSXAttribute;
|
||||
//# sourceMappingURL=index.js.map
|
||||
Reference in New Issue
Block a user