heroku 8.2.0-beta.9 → 8.2.1-beta.0
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/lib/hooks/update/brew.js +1 -0
- package/oclif.manifest.json +1 -1
- package/package.json +18 -18
package/lib/hooks/update/brew.js
CHANGED
|
@@ -24,6 +24,7 @@ const brewHook = async function () {
|
|
|
24
24
|
let cellarPath;
|
|
25
25
|
if (binPath && binPath.startsWith(path.join(brewRoot, 'Cellar'))) {
|
|
26
26
|
cellarPath = path.resolve(binPath, path.dirname(path.relative(binPath, path.join(brewRoot, 'Cellar/heroku'))));
|
|
27
|
+
console.error('brew update path:', cellarPath);
|
|
27
28
|
}
|
|
28
29
|
const fetchInstallReceipt = async () => {
|
|
29
30
|
if (!cellarPath)
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "8.2.
|
|
4
|
+
"version": "8.2.1-beta.0",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
@@ -9,17 +9,17 @@
|
|
|
9
9
|
"@heroku-cli/color": "1.1.14",
|
|
10
10
|
"@heroku-cli/command": "^10.0.0",
|
|
11
11
|
"@heroku-cli/notifications": "^1.2.2",
|
|
12
|
-
"@heroku-cli/plugin-addons-v5": "^8.2.0
|
|
13
|
-
"@heroku-cli/plugin-apps-v5": "^8.2.0
|
|
14
|
-
"@heroku-cli/plugin-certs-v5": "^8.2.0
|
|
15
|
-
"@heroku-cli/plugin-ci-v5": "^8.2.0
|
|
16
|
-
"@heroku-cli/plugin-container-registry-v5": "^8.2.0
|
|
17
|
-
"@heroku-cli/plugin-orgs-v5": "^8.2.0
|
|
18
|
-
"@heroku-cli/plugin-pg-v5": "^8.2.0
|
|
12
|
+
"@heroku-cli/plugin-addons-v5": "^8.2.0",
|
|
13
|
+
"@heroku-cli/plugin-apps-v5": "^8.2.0",
|
|
14
|
+
"@heroku-cli/plugin-certs-v5": "^8.2.0",
|
|
15
|
+
"@heroku-cli/plugin-ci-v5": "^8.2.0",
|
|
16
|
+
"@heroku-cli/plugin-container-registry-v5": "^8.2.0",
|
|
17
|
+
"@heroku-cli/plugin-orgs-v5": "^8.2.0",
|
|
18
|
+
"@heroku-cli/plugin-pg-v5": "^8.2.0",
|
|
19
19
|
"@heroku-cli/plugin-ps": "^8.1.7",
|
|
20
20
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
21
|
-
"@heroku-cli/plugin-redis-v5": "^8.2.0
|
|
22
|
-
"@heroku-cli/plugin-spaces": "^8.2.0
|
|
21
|
+
"@heroku-cli/plugin-redis-v5": "^8.2.0",
|
|
22
|
+
"@heroku-cli/plugin-spaces": "^8.2.0",
|
|
23
23
|
"@heroku-cli/schema": "^1.0.25",
|
|
24
24
|
"@heroku/buildpack-registry": "^1.0.1",
|
|
25
25
|
"@heroku/eventsource": "^1.0.7",
|
|
@@ -28,8 +28,8 @@
|
|
|
28
28
|
"@oclif/plugin-help": "^5",
|
|
29
29
|
"@oclif/plugin-legacy": "^1.3.0",
|
|
30
30
|
"@oclif/plugin-not-found": "2.3.16",
|
|
31
|
-
"@oclif/plugin-plugins": "2.4.
|
|
32
|
-
"@oclif/plugin-update": "3.1.
|
|
31
|
+
"@oclif/plugin-plugins": "2.4.3",
|
|
32
|
+
"@oclif/plugin-update": "3.1.32",
|
|
33
33
|
"@oclif/plugin-version": "^1.2.1",
|
|
34
34
|
"@oclif/plugin-warn-if-update-available": "2.0.29",
|
|
35
35
|
"@oclif/plugin-which": "2.2.8",
|
|
@@ -315,14 +315,14 @@
|
|
|
315
315
|
"build": "rm -rf lib && tsc",
|
|
316
316
|
"postpublish": "rm -f oclif.manifest.json",
|
|
317
317
|
"prepack": "yarn run build && oclif manifest",
|
|
318
|
-
"pretest": "tsc -p test --noEmit",
|
|
319
|
-
"test": "yarn
|
|
320
|
-
"test:acceptance": "mocha --forbid-only \"test/**/*.acceptance.test.ts\" && node ./bin/bats-test-runner",
|
|
321
|
-
"test:integration": "mocha --forbid-only \"test/**/*.integration.test.ts\"",
|
|
322
|
-
"test:smoke": "mocha --forbid-only \"test/**/smoke.acceptance.test.ts\"",
|
|
318
|
+
"pretest": "tsc -p test --noEmit && cd ../.. && yarn build",
|
|
319
|
+
"test": "yarn pretest && nyc mocha --forbid-only \"test/**/*.unit.test.ts\" && yarn posttest",
|
|
320
|
+
"test:acceptance": "yarn pretest && mocha --forbid-only \"test/**/*.acceptance.test.ts\" && node ./bin/bats-test-runner",
|
|
321
|
+
"test:integration": "yarn pretest && mocha --forbid-only \"test/**/*.integration.test.ts\"",
|
|
322
|
+
"test:smoke": "yarn pretest && mocha --forbid-only \"test/**/smoke.acceptance.test.ts\"",
|
|
323
323
|
"posttest": "yarn lint",
|
|
324
324
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
325
325
|
},
|
|
326
326
|
"types": "lib/index.d.ts",
|
|
327
|
-
"gitHead": "
|
|
327
|
+
"gitHead": "01134e64e08279e1e03a5ed475572df68f6136c8"
|
|
328
328
|
}
|