From ade968d2417be8c19265cc619ba28abe0fd938fd Mon Sep 17 00:00:00 2001 From: Paul Stresow Date: Wed, 7 Jul 2021 10:56:19 +0200 Subject: [PATCH] fix: removed debugger from script --- package.json | 2 +- scripts/apply.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/package.json b/package.json index ec6d286..07a6845 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "cordova-plugin-abi-filter", - "version": "1.2.1", + "version": "1.2.2", "description": "Specify supported platform ABIs for your android build", "scripts": { "test": "echo \"Error: no test specified\" && exit 1" diff --git a/scripts/apply.js b/scripts/apply.js index 9a58aa1..6010aaf 100644 --- a/scripts/apply.js +++ b/scripts/apply.js @@ -7,7 +7,6 @@ module.exports = context => { if (!context.opts.cordova.platforms.includes('android')) { return } - debugger; const { ConfigParser } = context.requireCordovaModule('cordova-common'); const utils = context.requireCordovaModule("cordova-lib/src/cordova/util");