Skip to content

Commit faab8f7

Browse files
authored
Update project-changes-info.ts
1 parent 85d7c78 commit faab8f7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/project-changes-info.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export class ProjectChangesInfo {
4444
this.appFilesChanged = this.containsNewerFiles(this.$projectData.appDirectoryPath, this.$projectData.appResourcesDirectoryPath, outputProjectMtime);
4545
if (!skipModulesAndResources) {
4646
this.appResourcesChanged = this.containsNewerFiles(this.$projectData.appResourcesDirectoryPath, null, outputProjectMtime);
47-
this.modulesChanged = this.containsNewerFiles(path.join(this.$projectData.projectDir, "node_modules"), path.join(this.$projectData.projectDir, "node_modules", "tns-ios-inspector")/*done because currently all node_modules are traversed, but tzraikov is working on improving behavior by resolving only the production dependencies*/, outputProjectMtime);
47+
this.modulesChanged = this.containsNewerFiles(path.join(this.$projectData.projectDir, "node_modules"), path.join(this.$projectData.projectDir, "node_modules", "tns-ios-inspector")/*done because currently all node_modules are traversed, a possible improvement could be traversing only production dependencies*/, outputProjectMtime);
4848
let platformResourcesDir = path.join(this.$projectData.appResourcesDirectoryPath, platformData.normalizedPlatformName);
4949
if (platform === this.$devicePlatformsConstants.iOS.toLowerCase()) {
5050
this.configChanged = this.filesChanged([

0 commit comments

Comments
 (0)