chore(build): update build process, commands, and packages

* chore(build): change build commands + tools

* refactor(sqlite): tslint

* chore(tsconfig): update tsconfig & change build command

* chore(build): change build commands
This commit is contained in:
Ibrahim Hadeed
2016-06-26 12:54:14 -04:00
committed by GitHub
parent ade3edace4
commit 3936f81d8f
5 changed files with 31 additions and 206 deletions
+2 -2
View File
@@ -67,13 +67,13 @@ export class SQLite {
* });
* ```
*/
openDatabase (config: any) : Promise<any> {
openDatabase (config: any): Promise<any> {
return new Promise((resolve, reject) => {
sqlitePlugin.openDatabase(config, db => {
this._objectInstance = db;
resolve(db);
}, error => {
console.warn(error)
console.warn(error);
reject(error);
});
});