codeplay-common 1.9.7 → 1.9.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -243,7 +243,8 @@ const ANDROID_FILE_REGEX = /^(?!\s*\/\/).*['"](?:.*\/)?saveToGalleryAndSaveAnyFi
243
243
 
244
244
  function scanDirectory(dir) {
245
245
 
246
- const appUniqueId = config.android?.APP_UNIQUE_ID;
246
+ const config = JSON.parse(fs.readFileSync(configPath, 'utf8'));
247
+ const appUniqueId = config.android?.APP_UNIQUE_ID;
247
248
  if(appUniqueId=="206")
248
249
  return;
249
250
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeplay-common",
3
- "version": "1.9.7",
3
+ "version": "1.9.8",
4
4
  "description": "Common build scripts and files",
5
5
  "scripts": {
6
6
  "postinstall": "node scripts/sync-files.js",