浏览代码

Fixed readme

sanex3339 7 年之前
父节点
当前提交
75be7bfd6b
共有 4 个文件被更改,包括 3 次插入3 次删除
  1. 1 1
      CHANGELOG.md
  2. 1 1
      README.md
  3. 0 0
      dist/index.js
  4. 1 1
      src/cli/JavaScriptObfuscatorCLI.ts

+ 1 - 1
CHANGELOG.md

@@ -15,7 +15,7 @@ v0.14.1
     
 v0.14.0
 ---
-* **New option:** `identifiersPrefix` sets prefix for all generated identifiers.
+* **New option:** `identifiersPrefix` sets prefix for all global identifiers.
 * **New option:** `transformObjectKeys` enables object keys transformation and obfuscation.
 * **New feature:** `eval` expressions obfuscation.
 * **Breaking change:** Now CLI obfuscating directory recursively. Fixed https://github.com/javascript-obfuscator/javascript-obfuscator/issues/157

+ 1 - 1
README.md

@@ -575,7 +575,7 @@ Available values:
 ### `identifiersPrefix`
 Type: `string` Default: `''`
 
-Sets prefix for all global generated identifiers.
+Sets prefix for all global identifiers.
 
 Use this option when you want to obfuscate multiple files. This option helps to avoid conflicts between global identifiers of these files. Prefix should be different for every file.
 

文件差异内容过多而无法显示
+ 0 - 0
dist/index.js


+ 1 - 1
src/cli/JavaScriptObfuscatorCLI.ts

@@ -250,7 +250,7 @@ export class JavaScriptObfuscatorCLI implements IInitializable {
             )
             .option(
                 '--identifiers-prefix <string>',
-                'Sets prefix for all global generated identifiers.'
+                'Sets prefix for all global identifiers.'
             )
             .option(
                 '--log <boolean>', 'Enables logging of the information to the console',

部分文件因为文件数量过多而无法显示