UNPKG

968 BSource Map (JSON)View Raw
1{"version":3,"sources":["../../src/config/findAllPodfilePaths.ts"],"names":["GLOB_EXCLUDE_PATTERN","findAllPodfilePaths","cwd","glob","sync","ignore"],"mappings":";;;;;;;AAOA;AAAA;;AAAA;AAAA;AAAA;;AAAA;AAAA;;;;AAPA;AACA;AACA;AACA;AACA;AACA;AACA;AAGA;AACA,MAAMA,oBAAoB,GAAG,CAAC,qCAAD,CAA7B;;AAEe,SAASC,mBAAT,CAA6BC,GAA7B,EAA0C;AACvD,SAAOC,gBAAKC,IAAL,CAAU,YAAV,EAAwB;AAC7BF,IAAAA,GAD6B;AAE7BG,IAAAA,MAAM,EAAEL;AAFqB,GAAxB,CAAP;AAID","sourcesContent":["/**\n * Copyright (c) Facebook, Inc. and its affiliates.\n *\n * This source code is licensed under the MIT license found in the\n * LICENSE file in the root directory of this source tree.\n *\n */\nimport glob from 'glob';\n\n// These folders will be excluded from search to speed it up\nconst GLOB_EXCLUDE_PATTERN = ['**/@(Pods|node_modules|Carthage)/**'];\n\nexport default function findAllPodfilePaths(cwd: string) {\n return glob.sync('**/Podfile', {\n cwd,\n ignore: GLOB_EXCLUDE_PATTERN,\n });\n}\n"]}
\No newline at end of file