Rename dependencies.

This commit is contained in:
kaikecarlos
2018-11-23 08:32:34 -03:00
committed by GitHub
parent db747ea246
commit e025496bbc

View File

@@ -3,8 +3,8 @@ const {app} = require('electron')
const chalk = require("chalk")
const AutoLaunch = require('auto-launch')
//* Setup electron-config
const Config = require('electron-config');
//* Setup electron-store
const Config = require('electron-store');
const userSettings = new Config({
name: "userSettings"
});
@@ -28,4 +28,4 @@ if(userSettings.get('autoLaunch') == undefined || userSettings.get('autoLaunch')
.catch(function(err) {
console.log(CONSOLEPREFIX + chalk.red("Error while adding App to autostart."))
})
}
}