We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dd8301d commit 673b817Copy full SHA for 673b817
README.md
@@ -62,6 +62,27 @@ obfuscator: {
62
}
63
```
64
65
+This configuration will obfuscate the input files in a destination folder by keeping the original names and directories
66
+
67
+```javascript
68
+obfuscator: {
69
+ options: {
70
+ // global options for the obfuscator
71
+ },
72
+ task1: {
73
74
+ // options for each sub task
75
76
+ files: {
77
+ 'dest/': [ // the files and their directories will be created in this folder
78
+ 'src/js/file1.js',
79
+ 'src/js/folder/file2.js'
80
+ ]
81
+ }
82
83
+}
84
+```
85
86
#### Debug protection and banner
87
88
Here you code will be protected against debugging and locked to the domain `www.example.com`.
0 commit comments