We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents e4c14c2 + a684d20 commit 3ca00afCopy full SHA for 3ca00af
lib/services/project-changes-service.ts
@@ -70,7 +70,7 @@ export class ProjectChangesService implements IProjectChangesService {
70
const platformResourcesDir = path.join(projectData.appResourcesDirectoryPath, platformData.normalizedPlatformName);
71
this._changesInfo.appResourcesChanged = this.containsNewerFiles(platformResourcesDir, null, projectData);
72
/*done because currently all node_modules are traversed, a possible improvement could be traversing only the production dependencies*/
73
- this._changesInfo.nativeChanged = this.containsNewerFiles(
+ this._changesInfo.nativeChanged = projectChangesOptions.skipModulesNativeCheck ? false : this.containsNewerFiles(
74
path.join(projectData.projectDir, NODE_MODULES_FOLDER_NAME),
75
path.join(projectData.projectDir, NODE_MODULES_FOLDER_NAME, "tns-ios-inspector"),
76
projectData,
0 commit comments