You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Feb 2, 2021. It is now read-only.
* Installs everything from package.json or specified dependency.
331
326
* In case there's information which dependency to install, the method will check it and install only this dependency and possibly its @types.
332
327
* @param {string} projectDir Directory of the project, where package.json is located.
333
328
* @param@optional {INpmDependency} dependency Description of the dependency that has to be installed.
334
-
* @return {IFuture<INpmInstallResult>} Returns object that will have error in case something fails.
329
+
* @return {Promise<INpmInstallResult>} Returns object that will have error in case something fails.
335
330
* In case there's no specific dependency that has to be installed and everything is installed successfully, the result will be empty object.
336
331
* In case there's dependency that has to be installed, the result object will contain information for the successfull installation of the dependency and the @types reference.
* @param {string} projectDir The directory of the project.
380
375
* @param {string[]} keywords The keywords for the search.
381
376
* @param@optional {(keywords: string[]) => string[]} modifySearchQuery Function which will be used to modify the search query when using the npm binary.
382
-
* @return {IFuture<IPluginsSource>} The plugins source which can be used to get the result.
377
+
* @return {Promise<IPluginsSource>} The plugins source which can be used to get the result.
* Searches for plugin in http://registry.npmjs.org plugins and if plugin is not found will continue the search in http://npmjs.org and the npm binary.
388
383
* @param {string} projectDir The directory of the project.
389
384
* @param {string[]} keywords The keywords for the search.
390
385
* @param@optional {(keywords: string[]) => string[]} modifySearchQuery Function which will be used to modify the search query when using the npm binary.
391
-
* @return {IFuture<IPluginsSource>} The plugins source which can be used to get the result.
386
+
* @return {Promise<IPluginsSource>} The plugins source which can be used to get the result.
@@ -24,17 +25,15 @@ export class AppBuilderDeviceAppDataBase extends DeviceAppDataBase implements IL
24
25
return`You can't LiveSync on device with id ${this.device.deviceInfo.identifier}! Deploy the app with LiveSync enabled and wait for the initial start up before LiveSyncing.`;
0 commit comments