Skip to content

Commit 064d026

Browse files
authored
Merge pull request #2294 from NativeScript/plamen5kov/fix_openappinspector
[iOS speciffic] Fix open app inspector command
2 parents c2f8e85 + 4363907 commit 064d026

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/services/ios-debug-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -214,7 +214,7 @@ class IOSDebugService implements IDebugService {
214214
private openAppInspector(fileDescriptor: string): IFuture<void> {
215215
if (this.$options.client) {
216216
return (() => {
217-
let inspectorPath = this.$npmInstallationManager.install(inspectorNpmPackageName, this.$projectData.projectDir).wait();
217+
let inspectorPath = this.$npmInstallationManager.install(inspectorNpmPackageName, this.$projectData.projectDir, {dependencyType: "save-dev"}).wait();
218218
let inspectorSourceLocation = path.join(inspectorPath, inspectorUiDir, "Main.html");
219219
let inspectorApplicationPath = path.join(inspectorPath, inspectorAppName);
220220

0 commit comments

Comments
 (0)