@gpc-cli/core 0.9.33 → 0.9.34
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.
- package/dist/index.js +5 -7
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1559,10 +1559,8 @@ async function uploadImage(client, packageName, language, imageType, filePath) {
|
|
|
1559
1559
|
"Check image dimensions, file size, and format. Google Play requires PNG or JPEG images within specific size limits per image type."
|
|
1560
1560
|
);
|
|
1561
1561
|
}
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
console.warn(`Warning: ${w}`);
|
|
1565
|
-
}
|
|
1562
|
+
for (const w of imageCheck.warnings) {
|
|
1563
|
+
process.emitWarning?.(w, "ImageUploadWarning");
|
|
1566
1564
|
}
|
|
1567
1565
|
const edit = await client.edits.insert(packageName);
|
|
1568
1566
|
try {
|
|
@@ -2830,9 +2828,9 @@ var METRIC_SET_METRICS = {
|
|
|
2830
2828
|
slowRenderingRateMetricSet: ["slowRenderingRate", "distinctUsers"],
|
|
2831
2829
|
excessiveWakeupRateMetricSet: ["excessiveWakeupRate", "distinctUsers"],
|
|
2832
2830
|
stuckBackgroundWakelockRateMetricSet: [
|
|
2833
|
-
"
|
|
2834
|
-
"
|
|
2835
|
-
"
|
|
2831
|
+
"stuckBgWakelockRate",
|
|
2832
|
+
"stuckBgWakelockRate7dUserWeighted",
|
|
2833
|
+
"stuckBgWakelockRate28dUserWeighted",
|
|
2836
2834
|
"distinctUsers"
|
|
2837
2835
|
],
|
|
2838
2836
|
errorCountMetricSet: ["errorReportCount", "distinctUsers"]
|