(projectRelativePath: string)
| 46 | |
| 47 | // match everything that needs to be synced except external and separate sync files |
| 48 | const ngSyncMatchFn = (projectRelativePath: string) => |
| 49 | syncedFilePatterns.some((p) => p.match(projectRelativePath)) && |
| 50 | alwaysExternalFilePatterns.every((p) => !p.match(projectRelativePath)) && |
| 51 | separateFilePatterns.every((p) => !p.match(projectRelativePath)); |
| 52 | |
| 53 | // match only files that need to be synced separately |
| 54 | const separateSyncMatchFn = (projectRelativePath: string) => |