heroku 10.0.2 → 10.0.3-alpha.1
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/bin/heroku-prompts.js +235 -0
- package/bin/heroku-repl.js +48 -0
- package/bin/run +31 -7
- package/lib/analytics.d.ts +1 -0
- package/lib/analytics.js +2 -1
- package/lib/commands/addons/open.js +1 -1
- package/lib/commands/spaces/destroy.js +16 -2
- package/lib/commands/telemetry/add.js +1 -1
- package/lib/commands/telemetry/index.js +1 -1
- package/lib/hooks/postrun/performance_analytics.js +1 -0
- package/lib/hooks/prerun/analytics.js +1 -1
- package/oclif.manifest.json +675 -676
- package/package.json +7 -6
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "10.0.
|
|
4
|
+
"version": "10.0.3-alpha.1",
|
|
5
5
|
"author": "Heroku",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -78,7 +78,8 @@
|
|
|
78
78
|
"urijs": "^1.19.11",
|
|
79
79
|
"validator": "^13.7.0",
|
|
80
80
|
"word-wrap": "^1.2.5",
|
|
81
|
-
"ws": "^6.2.2"
|
|
81
|
+
"ws": "^6.2.2",
|
|
82
|
+
"yargs-parser": "18.1.3"
|
|
82
83
|
},
|
|
83
84
|
"devDependencies": {
|
|
84
85
|
"@heroku-cli/schema": "^1.0.25",
|
|
@@ -92,9 +93,9 @@
|
|
|
92
93
|
"@types/glob": "^7.1.1",
|
|
93
94
|
"@types/inquirer": "^8.2.10",
|
|
94
95
|
"@types/lodash": "^4.14.123",
|
|
95
|
-
"@types/mocha": "^10.0.
|
|
96
|
+
"@types/mocha": "^10.0.10",
|
|
96
97
|
"@types/node": "20.14.8",
|
|
97
|
-
"@types/node-fetch": "^2.
|
|
98
|
+
"@types/node-fetch": "^2.6.11",
|
|
98
99
|
"@types/phoenix": "^1.4.0",
|
|
99
100
|
"@types/proxyquire": "^1.3.28",
|
|
100
101
|
"@types/psl": "^1.1.3",
|
|
@@ -117,7 +118,7 @@
|
|
|
117
118
|
"globby": "^10.0.2",
|
|
118
119
|
"lodash": "^4.17.11",
|
|
119
120
|
"lolex": "^3.1.0",
|
|
120
|
-
"mocha": "^
|
|
121
|
+
"mocha": "^10.8.2",
|
|
121
122
|
"nock": "^13.5.1",
|
|
122
123
|
"nyc": "^15.1.0",
|
|
123
124
|
"oclif": "4.14.36",
|
|
@@ -390,5 +391,5 @@
|
|
|
390
391
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
391
392
|
},
|
|
392
393
|
"types": "lib/index.d.ts",
|
|
393
|
-
"gitHead": "
|
|
394
|
+
"gitHead": "9bb834e768022c3605a7db95a1c6d20c6e10edfd"
|
|
394
395
|
}
|