From 598eb5f6bcd66eb3be6aaf7e141c6255461048fe Mon Sep 17 00:00:00 2001 From: Yasser Lahbibi Date: Thu, 11 Apr 2019 12:26:27 +0200 Subject: [PATCH] Remove semicolon in data options for Sass With the current config, it's not possible to use .sass files as the data option contains a semicolon. --- index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 238ca88..53014e4 100644 --- a/index.js +++ b/index.js @@ -573,7 +573,7 @@ const nativeConfig = (api, projectOptions, env, jsOrTs, projectRoot, platform) = { minimize: false, url: false, - data: '$PLATFORM: ' + platform + ';' + data: '$PLATFORM: ' + platform } ) ) @@ -590,7 +590,7 @@ const nativeConfig = (api, projectOptions, env, jsOrTs, projectRoot, platform) = { minimize: false, url: false, - data: '$PLATFORM: ' + platform + ';' + data: '$PLATFORM: ' + platform } ) )