While starting to look at #5067, I noticed that we were skipping pub get for reasons other than what we want:
|
// Never do anything for files inside hidden or build folders. |
|
if (filePath.includes(`${path.sep}.`) || filePath.includes(`${path.sep}build${path.sep}`)) { |
|
this.logger.info(`Skipping pubspec change for ignored folder ${filePath}`); |
|
return; |
|
} |
We should figure out a better way to handle this.