We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 08bb4a8 commit e6ba2bcCopy full SHA for e6ba2bc
lib/services/project-changes-service.ts
@@ -68,7 +68,7 @@ export class ProjectChangesService implements IProjectChangesService {
68
this.$nodeModulesDependenciesBuilder.getProductionDependencies(projectData.projectDir)
69
.filter(dep => dep.nativescript && this.$fs.exists(path.join(dep.directory, "platforms", platformData.platformNameLowerCase)))
70
.map(dep => {
71
- this._changesInfo.nativeChanged = this.containsNewerFiles(
+ this._changesInfo.nativeChanged = this._changesInfo.nativeChanged || this.containsNewerFiles(
72
path.join(dep.directory, "platforms", platformData.platformNameLowerCase),
73
projectData,
74
this.fileChangeRequiresBuild);
0 commit comments