We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f59c7c5 commit 64461e0Copy full SHA for 64461e0
lib/services/project-changes-service.ts
@@ -244,7 +244,7 @@ export class ProjectChangesService implements IProjectChangesService {
244
}
245
246
if (fileStats.isDirectory()) {
247
- if (this.isParentFolderChanged(dir)) {
+ if (this.isFolderModified(dir)) {
248
return true;
249
250
@@ -257,7 +257,7 @@ export class ProjectChangesService implements IProjectChangesService {
257
return false;
258
259
260
- private isParentFolderChanged(parentDirPath: string): boolean {
+ private isFolderModified(parentDirPath: string): boolean {
261
const parentDirStat = this.$fs.getFsStats(parentDirPath);
262
return parentDirStat.mtime.getTime() > this._outputProjectMtime ||
263
parentDirStat.ctime.getTime() >= this._outputProjectCTime;
0 commit comments