We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f165dd commit df9c684Copy full SHA for df9c684
1 file changed
blueprints/ember-cli-capacitor/index.js
@@ -48,8 +48,9 @@ module.exports = {
48
choices,
49
});
50
51
- selected.platforms.forEach((platform) => {
+ for (const platform of selected.platforms) {
52
+ await this.addPackagesToProject([{ name: `@capacitor/{platform}` }]);
53
execSync(`npx cap add ${platform}`);
- });
54
+ }
55
},
56
};
0 commit comments