UNPKG

react-native

Version:

A framework for building native apps using React

12 lines (10 loc) 288 B
module.exports = function makeBuildPatch(name) { const installPattern = new RegExp( `\\s{4}(compile)(\\(|\\s)(project)\\(\\\':${name}\\\'\\)(\\)|\\s)` ); return { installPattern, pattern: /[^ \t]dependencies {\n/, patch: ` compile project(':${name}')\n` }; };