jscrambler 8.6.4 → 8.6.6

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # jscrambler
2
2
 
3
+ ## 8.6.6
4
+
5
+ ### Patch Changes
6
+
7
+ - [57d7550]: fix compatibility of cwd and beforeProtection options
8
+
9
+ ## 8.6.5
10
+
11
+ ### Patch Changes
12
+
13
+ - [a50925a]: Downgrade glob to allow support node.js v14
14
+
3
15
  ## 8.6.4
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -35,7 +35,7 @@ Please make sure you install the right version, otherwise some functionalities m
35
35
 
36
36
  ## Installation
37
37
 
38
- Jscrambler **requires node v12.17.0 or higher**
38
+ Jscrambler **requires node v14 or higher**
39
39
 
40
40
  On your project:
41
41
 
package/dist/utils.js CHANGED
@@ -66,9 +66,6 @@ function concatenate(scriptObject, cwd, path, buffer) {
66
66
  let {
67
67
  target
68
68
  } = scriptObject;
69
- if (cwd) {
70
- target = (0, _path.join)(cwd, target);
71
- }
72
69
  target = (0, _path.normalize)(target);
73
70
  if (target === path) {
74
71
  const {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "jscrambler",
3
3
  "description": "Jscrambler API client.",
4
- "version": "8.6.4",
4
+ "version": "8.6.6",
5
5
  "homepage": "https://github.com/jscrambler/jscrambler",
6
6
  "author": "Jscrambler <support@jscrambler.com>",
7
7
  "repository": {
@@ -25,7 +25,7 @@
25
25
  "commander": "^2.8.1",
26
26
  "core-js": "3.38.1",
27
27
  "filesize-parser": "1.5.0",
28
- "glob": "^10.4.5",
28
+ "glob": "^8.1.0",
29
29
  "http-proxy-agent": "7.0.2",
30
30
  "https-proxy-agent": "7.0.4",
31
31
  "jszip": "^3.8.0",