From 538ffbf96b9c8df6653d2387e88c0f3a4c7afe49 Mon Sep 17 00:00:00 2001 From: gaoshuaixing Date: Thu, 24 Nov 2022 17:25:30 +0800 Subject: [PATCH] 2.3.0 --- electron/config/encrypt.js | 10 ++++++---- package.json | 2 +- 2 files changed, 7 insertions(+), 5 deletions(-) diff --git a/electron/config/encrypt.js b/electron/config/encrypt.js index 96c9681..3cba1cf 100644 --- a/electron/config/encrypt.js +++ b/electron/config/encrypt.js @@ -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'], -}; - +}; \ No newline at end of file diff --git a/package.json b/package.json index 8f064c1..fbfb934 100644 --- a/package.json +++ b/package.json @@ -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": {