(projectRelativePath: string)
| 52 | |
| 53 | // match only files that need to be synced separately |
| 54 | const separateSyncMatchFn = (projectRelativePath: string) => |
| 55 | separateFilePatterns.some((p) => p.match(projectRelativePath)) && |
| 56 | alwaysExternalFilePatterns.every((p) => !p.match(projectRelativePath)); |
| 57 | |
| 58 | return {ngSyncMatchFn, separateSyncMatchFn}; |
| 59 | } |