GT2/GT2-Android/node_modules/react-native/local-cli/link/pods/removePodEntry.js

8 lines
435 B
JavaScript
Raw Normal View History

'use strict';
module.exports = function removePodEntry(podfileContent, podName) {
// this regex should catch line(s) with full pod definition, like: pod 'podname', :path => '../node_modules/podname', :subspecs => ['Sub2', 'Sub1']
const podRegex = new RegExp("\\n( |\\t)*pod\\s+(\"|')" + podName + "(\"|')(,\\s*(:[a-z]+\\s*=>)?\\s*((\"|').*?(\"|')|\\[[\\s\\S]*?\\]))*\\n", 'g');
return podfileContent.replace(podRegex, '\n');
};