Skip to content

Commit

Permalink
fix: missing space with configuration (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
dtarnawsky authored Aug 6, 2024
1 parent 50bfd26 commit 928df07
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "ionic",
"displayName": "Ionic",
"description": "Official extension for Ionic and Capacitor development",
"version": "1.91.0",
"version": "1.91.1",
"icon": "media/ionic.png",
"publisher": "Ionic",
"keywords": [
Expand Down
4 changes: 2 additions & 2 deletions src/build-configuration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ export function getConfigurationArgs(isDebugging?: boolean): string {
return '';
} else {
if (exists('vue') || exists('react')) {
return `--mode=${config}`;
return ` --mode=${config}`;
} else {
return `--configuration=${config}`;
return ` --configuration=${config}`;
}
}
}
Expand Down

0 comments on commit 928df07

Please sign in to comment.