This commit is contained in:
gaoshuaixing
2022-11-24 17:25:30 +08:00
parent c4e24eb493
commit 538ffbf96b
2 changed files with 7 additions and 5 deletions

View File

@@ -1,11 +1,13 @@
/**
* 加密配置
* @param {String} type - strict (first confusion and then bytecode) || bytecode || confusion
* @param {Array} directory - directory to be encrypted
* @param {Array} fileExt - file suffix to be encrypted, currently only .js is supported
*/
module.exports = {
type: 'bytecode', // bytecode | confusion
module.exports = {
type: 'strict',
directory: [
'electron'
],
fileExt: ['.js'],
};
};

View File

@@ -1,6 +1,6 @@
{
"name": "ee",
"version": "2.2.2",
"version": "2.3.0",
"description": "A fast, desktop software development framework",
"main": "main.js",
"scripts": {