javascript-obfuscator 5.4.7 → 5.5.0
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 +1 -0
- package/dist/index.browser.js +2 -2
- package/dist/index.browser.js.map +1 -1
- package/dist/index.cli.js +1 -1
- package/dist/index.cli.js.map +1 -1
- package/dist/index.js +1 -1
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/typings/src/pro-api/ProApiClient.d.ts +1 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,9 @@
|
|
|
1
1
|
Change Log
|
|
2
2
|
|
|
3
|
+
v5.5.0
|
|
4
|
+
---
|
|
5
|
+
* Pro API: reworked large file uploads — fixed `413 Content Too Large` for ~4.4–4.6MB request bodies, and Blob uploads now send the raw source (`blobFormat: 'raw'`) instead of the JSON request body, so uploads always fit the plan's file size cap
|
|
6
|
+
|
|
3
7
|
v5.4.7
|
|
4
8
|
---
|
|
5
9
|
* Fixed directory obfuscation with a set `sourceMapFileName` making all files share and overwrite one `.map`. Fixes https://github.com/javascript-obfuscator/javascript-obfuscator/issues/817
|
package/README.md
CHANGED
|
@@ -73,6 +73,7 @@ The example of obfuscated code: [github.com](https://github.com/javascript-obfus
|
|
|
73
73
|
#### Plugins:
|
|
74
74
|
* Webpack plugin: [webpack-obfuscator](https://github.com/javascript-obfuscator/webpack-obfuscator)
|
|
75
75
|
* Webpack loader: [obfuscator-loader](https://github.com/javascript-obfuscator/obfuscator-loader)
|
|
76
|
+
* Esbuild plugin: [esbuild-javascript-obfuscator](https://www.npmjs.com/package/esbuild-javascript-obfuscator)
|
|
76
77
|
* Gulp: [gulp-javascript-obfuscator](https://github.com/javascript-obfuscator/gulp-javascript-obfuscator)
|
|
77
78
|
* Grunt: [grunt-contrib-obfuscator](https://github.com/javascript-obfuscator/grunt-contrib-obfuscator)
|
|
78
79
|
* Rollup: [rollup-plugin-javascript-obfuscator](https://github.com/javascript-obfuscator/rollup-plugin-javascript-obfuscator)
|