heroku 10.4.0 → 10.4.1-alpha.4
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 +619 -0
- package/bin/run +36 -7
- package/lib/analytics.js +3 -1
- package/lib/global_telemetry.d.ts +1 -1
- package/lib/global_telemetry.js +3 -1
- package/lib/lib/pg/host.js +1 -2
- package/lib/lib/redis/api.js +1 -1
- package/oclif.manifest.json +894 -894
- package/package.json +5 -4
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.4.
|
|
4
|
+
"version": "10.4.1-alpha.4",
|
|
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",
|
|
@@ -390,12 +391,12 @@
|
|
|
390
391
|
"test:acceptance": "yarn pretest && mocha --forbid-only \"test/**/*.acceptance.test.ts\" && node ./bin/bats-test-runner",
|
|
391
392
|
"test:integration": "yarn pretest && mocha --forbid-only \"test/**/*.integration.test.ts\"",
|
|
392
393
|
"test:smoke": "yarn pretest && mocha --forbid-only \"test/**/smoke.acceptance.test.ts\"",
|
|
393
|
-
"test:unit:justTest:local": "
|
|
394
|
+
"test:unit:justTest:local": "mocha \"test/**/*.unit.test.ts\"",
|
|
394
395
|
"test:unit:justTest:ci": "nyc --reporter=lcov --reporter=text-summary mocha --forbid-only \"test/**/*.unit.test.ts\"",
|
|
395
396
|
"test": "yarn pretest && yarn test:unit:justTest:ci",
|
|
396
397
|
"test:local": "yarn pretest && yarn test:unit:justTest:local",
|
|
397
398
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
398
399
|
},
|
|
399
400
|
"types": "lib/index.d.ts",
|
|
400
|
-
"gitHead": "
|
|
401
|
+
"gitHead": "5b16397f5c6e3d85fe97db84917f31a855eaf97f"
|
|
401
402
|
}
|