why tf rimraf

This commit is contained in:
Jean Ouina 2020-09-14 11:23:33 +02:00
parent bbdce5a381
commit da77d9cf75
2 changed files with 2 additions and 3 deletions

View File

@ -1236,7 +1236,6 @@ var ensureExported = global.ensureExported = function ensureExported(filter, max
}
let Notifications = require("./patchNotifications")
const { ipcRenderer } = require("electron")
const rimraf = require("rimraf")
let useDefault = electron.ipcRenderer.sendSync("LIGHTCORD_GET_SETTINGS")["DEFAULT_NOTIFICATIONS"]
if(typeof useDefault !== "boolean"){
useDefault = true

View File

@ -16,8 +16,8 @@
"build:minify": "node build.js",
"clean": "node scripts/clean.js",
"clean:all": "node scripts/clean.js --all",
"devInstall": "npm i --save-dev --arch=ia32 electron@9.3.0 && node installSubModules.js && echo \"Everything is installed. You should be able to do npm run test to compile everything and launch.\"",
"devInstall:64": "npm i --save-dev --arch=x64 electron@9.3.0 && node installSubModules.js && echo \"Everything is installed. You should be able to do npm run test to compile everything and launch.\"",
"devInstall": "npm i --save-dev --arch=ia32 electron@10.1.1 && node installSubModules.js && echo \"Everything is installed. You should be able to do npm run test to compile everything and launch.\"",
"devInstall:64": "npm i --save-dev --arch=x64 electron@10.1.1 && node installSubModules.js && echo \"Everything is installed. You should be able to do npm run test to compile everything and launch.\"",
"versions": "echo Electron: && electron -v && echo Typescript: && tsc -v"
},
"author": "JeanOUINA",