codeplay-common 1.3.5 → 1.3.7

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.
@@ -407,6 +407,7 @@ rl.question('Enter new versionCode (press enter to keep current): ', (newVersion
407
407
 
408
408
  } catch (error) {
409
409
  console.error(`❌ Error during build for Store ID ${id}:`, error);
410
+ process.exit(1);
410
411
  }
411
412
  });
412
413
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "codeplay-common",
3
- "version": "1.3.5",
3
+ "version": "1.3.7",
4
4
  "description": "Common build scripts and files",
5
5
  "scripts": {
6
6
  "postinstall": "node scripts/sync-files.js",
@@ -40,6 +40,7 @@ const filePatternsToRemove = [
40
40
  /^codeplayBeforeBuild-.*$/,
41
41
  /^modify-plugin-xml\.xml$/,
42
42
  /^finalrelease.*$/,
43
+ /^iap-install-\d+(\.\d+)?\.js$/,
43
44
  /^\.env\.storeid[1-7]$/,
44
45
  /^modify-plugin-xml\.js$/
45
46
  ];