moveFilesExclSuffix method
Implementation
void moveFilesExclSuffix(
String suffix, List<String> files, String dependencySrc) {
List<String> nonJSFiles = [];
for (String file in files) {
if (file.endsWith(suffix)) {
continue;
}
nonJSFiles.add(file);
}
_move(nonJSFiles, dependencySrc);
}