清除正在运行的电子构建器

时间:2017-11-07 11:16:27

标签: electron electron-builder

我正在编写一个电子应用程序,它使用本地存储作为redux存储的持久性机制。但是,当我构建生产版本时,本地存储的开发版本仍然存在。

使用电子制造商打包应用程序时,如何自动清除本地存储空间?

2 个答案:

答案 0 :(得分:0)

您需要从构建脚本中删除Local Storage文件夹,在Windows上这将是apply plugin: 'com.android.application' android { compileSdkVersion 26 defaultConfig { applicationId "com.example.Nick.phonebook_database" minSdkVersion 15 targetSdkVersion 26 versionCode 1 versionName "1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro' } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:26.1.0' implementation 'com.android.support.constraint:constraint-layout:1.0.2' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.1' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.1' }

答案 1 :(得分:0)

我使用一个预构建脚本解决了这个问题,就像这样(我只为Windows构建)

const fsExtra = require('fs-extra')
const localPath = 'C:/Users/' + require("os").userInfo().username + '/AppData/Roaming/YOURAPPNAME/Local Storage'
fsExtra.emptyDirSync(localPath)

将其保存到我在构建之前运行的js文件中。