You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 31, 2022. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -112,6 +112,23 @@ grunt.initConfig({
112
112
});
113
113
```
114
114
115
+
#### Obfuscate and overwrite
116
+
117
+
In this example, source files are obfuscated and overwritten:
118
+
119
+
```js
120
+
grunt.initConfig({
121
+
javascript_obfuscator: {
122
+
options: {
123
+
/* Default options */
124
+
},
125
+
main: {
126
+
src: ['src/module1.js', 'src/module2.js']
127
+
}
128
+
},
129
+
});
130
+
```
131
+
115
132
## Contributing
116
133
In lieu of a formal styleguide, take care to maintain the existing coding style. Add unit tests for any new or changed functionality. Lint and test your code using [Grunt](http://gruntjs.com/).
0 commit comments