javascript-obfuscator 4.0.0 → 4.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +4 -0
- package/README.md +4 -7
- package/dist/index.browser.js +1 -1
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cli.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
|
|
3
|
+
v4.0.1
|
|
4
|
+
---
|
|
5
|
+
* Update `class-validator` dependency https://github.com/javascript-obfuscator/javascript-obfuscator/pull/1146
|
|
6
|
+
|
|
3
7
|
v4.0.0
|
|
4
8
|
---
|
|
5
9
|
* **Breaking change:** `debugProtectionInterval` option now accepts value in milliseconds instead of `boolean` value. Fixed https://github.com/javascript-obfuscator/javascript-obfuscator/issues/1031
|
package/README.md
CHANGED
|
@@ -42,9 +42,6 @@ The example of obfuscated code: [github.com](https://github.com/javascript-obfus
|
|
|
42
42
|
[](https://xscode.com/sanex3339/javascript-obfuscator)
|
|
43
43
|
|
|
44
44
|
#### You can support this project by donating:
|
|
45
|
-
* (OpenCollective) https://opencollective.com/javascript-obfuscator
|
|
46
|
-
* PayPal credit card [https://www.paypal.com/donate](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=javascript-obfuscator@yandex.ru&lc=US&no_note=0&item_name=Support+javascript-obfuscator&cn=&curency_code=USD&bn=PP-DonationsBF:btn_donateCC_LG.gif:NonHosted)
|
|
47
|
-
* PayPal https://www.paypal.me/javascriptobfuscator
|
|
48
45
|
* (Bitcoin) bc1q203p8nyrstwm7vwzjg3h9l9t6y9ka0umw0rx96
|
|
49
46
|
|
|
50
47
|
Huge thanks to all supporters!
|
|
@@ -358,7 +355,7 @@ Following options are available for the JS Obfuscator:
|
|
|
358
355
|
identifierNamesGenerator: 'hexadecimal',
|
|
359
356
|
identifiersDictionary: [],
|
|
360
357
|
identifiersPrefix: '',
|
|
361
|
-
|
|
358
|
+
ignoreImports: false,
|
|
362
359
|
inputFileName: '',
|
|
363
360
|
log: false,
|
|
364
361
|
numbersToExpressions: false,
|
|
@@ -839,7 +836,7 @@ Sets prefix for all global identifiers.
|
|
|
839
836
|
|
|
840
837
|
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.
|
|
841
838
|
|
|
842
|
-
### `
|
|
839
|
+
### `ignoreImports`
|
|
843
840
|
Type: `boolean` Default: `false`
|
|
844
841
|
|
|
845
842
|
Prevents obfuscation of `require` imports. Could be helpful in some cases when for some reason runtime environment requires these imports with static strings only.
|
|
@@ -1677,7 +1674,7 @@ Try `renamePropertiesMode: 'safe'` option, if it still doesn't work, just disabl
|
|
|
1677
1674
|
|
|
1678
1675
|
## Backers
|
|
1679
1676
|
|
|
1680
|
-
Support us with a monthly donation and help us continue our activities.
|
|
1677
|
+
Support us with a monthly donation and help us continue our activities.
|
|
1681
1678
|
|
|
1682
1679
|
<a href="https://opencollective.com/javascript-obfuscator/backer/0/website" target="_blank"><img src="https://opencollective.com/javascript-obfuscator/backer/0/avatar.svg"></a>
|
|
1683
1680
|
<a href="https://opencollective.com/javascript-obfuscator/backer/1/website" target="_blank"><img src="https://opencollective.com/javascript-obfuscator/backer/1/avatar.svg"></a>
|
|
@@ -1713,7 +1710,7 @@ Support us with a monthly donation and help us continue our activities. [[Become
|
|
|
1713
1710
|
|
|
1714
1711
|
## Sponsors
|
|
1715
1712
|
|
|
1716
|
-
Become a sponsor and get your logo on our README on Github with a link to your site.
|
|
1713
|
+
Become a sponsor and get your logo on our README on Github with a link to your site.
|
|
1717
1714
|
|
|
1718
1715
|
<a href="https://opencollective.com/javascript-obfuscator/sponsor/0/website" target="_blank"><img src="https://opencollective.com/javascript-obfuscator/sponsor/0/avatar.svg"></a>
|
|
1719
1716
|
<a href="https://opencollective.com/javascript-obfuscator/sponsor/1/website" target="_blank"><img src="https://opencollective.com/javascript-obfuscator/sponsor/1/avatar.svg"></a>
|