storeconfig 0.0.12 → 0.0.13
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/cli.js +92 -92
- package/dist/cli.js.map +7 -0
- package/package.json +6 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "storeconfig",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.13",
|
|
4
4
|
"description": "CLI tool for App Store Connect synchronization",
|
|
5
5
|
"main": "dist/cli.js",
|
|
6
6
|
"bin": {
|
|
@@ -28,7 +28,8 @@
|
|
|
28
28
|
"set-price": "node dist/cli.js set-price",
|
|
29
29
|
"compare-price": "node dist/cli.js compare-price",
|
|
30
30
|
"example": "node dist/cli.js example",
|
|
31
|
-
"update-readme": "node scripts/generate-readme-example.js"
|
|
31
|
+
"update-readme": "node scripts/generate-readme-example.js",
|
|
32
|
+
"upload-sourcemap": "npx bugsnag-source-maps upload-node --api-key 9214ba2acdaeee4012c236461232c4f3 --overwrite --detect-app-version --bundle dist/cli.js --source-map dist/cli.js.map"
|
|
32
33
|
},
|
|
33
34
|
"keywords": [
|
|
34
35
|
"cli",
|
|
@@ -64,6 +65,7 @@
|
|
|
64
65
|
"dependencies": {
|
|
65
66
|
"@bugsnag/js": "^8.6.0",
|
|
66
67
|
"axios": "^1.10.0",
|
|
68
|
+
"axios-retry": "^4.5.0",
|
|
67
69
|
"dotenv": "^16.6.1",
|
|
68
70
|
"inquirer": "^8.2.5",
|
|
69
71
|
"ora": "^8.2.0",
|
|
@@ -74,10 +76,12 @@
|
|
|
74
76
|
},
|
|
75
77
|
"devDependencies": {
|
|
76
78
|
"@bugsnag/cli": "^3.4.1",
|
|
79
|
+
"@bugsnag/source-maps": "^2.3.3",
|
|
77
80
|
"@types/inquirer": "^9.0.9",
|
|
78
81
|
"@types/jest": "^30.0.0",
|
|
79
82
|
"@types/node": "^24.0.10",
|
|
80
83
|
"@types/yargs": "^17.0.33",
|
|
84
|
+
"axios-mock-adapter": "^2.1.0",
|
|
81
85
|
"esbuild": "^0.25.11",
|
|
82
86
|
"jest": "^30.0.4",
|
|
83
87
|
"ts-jest": "^29.4.0",
|