From 243c701e72895027bb64829e8ab19b3ab48bd3a3 Mon Sep 17 00:00:00 2001 From: farfromrefug Date: Wed, 8 Jan 2025 14:31:13 +0100 Subject: [PATCH] chore: typo fix --- nativescript.config.js | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/nativescript.config.js b/nativescript.config.js index 225e5c2b..46185a2d 100644 --- a/nativescript.config.js +++ b/nativescript.config.js @@ -3,8 +3,9 @@ const sentryEnabled = !!process.env['NS_SENTRY']; const loggingEnabled = !!process.env['NS_LOGGING']; const playstoreBuild = !!process.env['PLAY_STORE_BUILD']; +console.log('playstoreBuild', playstoreBuild) module.exports = { - ignoredNativeDependencies: [].concat(sentryEnabled ? [] : ['@nativescript-community/sentry']).concat(playstoreBuild ? [] : ['@akyas/nativescript-inapp-purchase']), + ignoredNativeDependencies: [].concat(sentryEnabled ? [] : ['@nativescript-community/sentry']).concat(playstoreBuild ? [] : ['@akylas/nativescript-inapp-purchase']), id: process.env['APP_ID'], appResourcesPath: 'App_Resources', buildPath: 'platforms',