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 92de5c7 commit da771c3Copy full SHA for da771c3
lib/services/platform-service.ts
@@ -79,13 +79,13 @@ export class PlatformService implements IPlatformService {
79
80
let packageToInstall = "";
81
let npmOptions: IStringDictionary = {
82
- pathToSave: path.join(this.$projectData.platformsDir, platform)
+ pathToSave: path.join(this.$projectData.platformsDir, platform),
83
+ dependencyType: "save"
84
};
85
86
if (!this.$options.frameworkPath) {
87
packageToInstall = platformData.frameworkPackageName;
88
npmOptions["version"] = version;
- npmOptions["dependencyType"] = "save";
89
}
90
91
let spinner = new clui.Spinner("Installing " + packageToInstall);
0 commit comments