Skip to content

Commit 600e4a2

Browse files
authored
Merge pull request #558 from Microsoft/bugfix/run-ios-device
Fixed issue with Run iOS on device
2 parents 7100cfc + cd4acc5 commit 600e4a2

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
## 0.4.4
2+
* Fixed issue with Run iOS on device
13
## 0.4.3
24
* Added custom packager port support
35
* Added separate channels for logs output

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "vscode-react-native",
33
"displayName": "React Native Tools",
4-
"version": "0.4.3",
4+
"version": "0.4.4",
55
"private": true,
66
"publisher": "vsmobile",
77
"icon": "images/icon.png",

src/extension/extensionServer.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -238,11 +238,11 @@ function requestSetup(args: any): any {
238238
let mobilePlatformOptions: any = {
239239
projectRoot: projectRootPath,
240240
platform: args.platform,
241-
targetType: args.targetType || "simulator",
241+
target: args.target || "simulator",
242242
};
243243

244244
if (!args.runArguments) {
245-
let runArgs = SettingsHelper.getRunArgs(args.platform, args.targetType || "simulator");
245+
let runArgs = SettingsHelper.getRunArgs(args.platform, args.target || "simulator");
246246
mobilePlatformOptions.runArguments = runArgs;
247247
}
248248

0 commit comments

Comments
 (0)