Skip to content
This repository was archived by the owner on Aug 7, 2021. It is now read-only.

Commit 5a803bb

Browse files
committed
Fix a forgotten comma, and delete unused vars.
1 parent 36955e2 commit 5a803bb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Diff for: index.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ if (isAngular) {
1717

1818
//HACK: changes the JSONP chunk eval function to `global["nativescriptJsonp"]`
1919
// applied to tns-java-classes.js only
20-
exports.NativeScriptJsonpPlugin = function (options) {
20+
exports.NativeScriptJsonpPlugin = function () {
2121
};
2222

2323
exports.NativeScriptJsonpPlugin.prototype.apply = function (compiler) {
24-
compiler.plugin("compilation", function (compilation, params) {
24+
compiler.plugin("compilation", function (compilation) {
2525
compilation.plugin("optimize-chunk-assets", function (chunks, callback) {
2626
chunks.forEach(function (chunk) {
2727
chunk.files.forEach(function (file) {
@@ -158,7 +158,7 @@ exports.uglifyMangleExcludes = [
158158
"View",
159159

160160
//Android native class extenders
161-
"TapAndDoubleTapGestureListener"
161+
"TapAndDoubleTapGestureListener",
162162
"SwipeGestureListener",
163163
"PinchGestureListener",
164164
"SwipeGestureListener",

0 commit comments

Comments
 (0)