2
0
mirror of https://github.com/status-im/react-native.git synced 2025-02-18 12:27:09 +00:00

12 lines
249 B
JavaScript
Raw Normal View History

module.exports = function removeSharedLibraries(project, libraries) {
if (!libraries.length) {
return;
}
const target = project.getFirstTarget().uuid;
for (var name of libraries) {
project.removeFramework(name, { target });
}
};