heroku 8.0.5 → 8.0.6
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/file.js +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +20 -23
package/lib/file.js
CHANGED
|
@@ -43,7 +43,7 @@ async function removeEmptyDirs(dir) {
|
|
|
43
43
|
throw error;
|
|
44
44
|
}
|
|
45
45
|
const dirs = files.filter(f => f.stat.isDirectory()).map(f => f.path);
|
|
46
|
-
// eslint-disable-next-line no-await-in-loop
|
|
46
|
+
// eslint-disable-next-line no-await-in-loop, unicorn/no-array-callback-reference
|
|
47
47
|
for (const p of dirs.map(removeEmptyDirs))
|
|
48
48
|
await p;
|
|
49
49
|
files = await ls(dir);
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,38 +1,38 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "heroku",
|
|
3
3
|
"description": "CLI to interact with Heroku",
|
|
4
|
-
"version": "8.0.
|
|
4
|
+
"version": "8.0.6",
|
|
5
5
|
"author": "Jeff Dickey @jdxcode",
|
|
6
6
|
"bin": "./bin/run",
|
|
7
7
|
"bugs": "https://github.com/heroku/cli/issues",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@heroku-cli/color": "1.1.14",
|
|
10
10
|
"@heroku-cli/command": "^9.0.2",
|
|
11
|
-
"@heroku-cli/plugin-addons-v5": "^8.0.
|
|
12
|
-
"@heroku-cli/plugin-apps": "^8.0.
|
|
11
|
+
"@heroku-cli/plugin-addons-v5": "^8.0.6",
|
|
12
|
+
"@heroku-cli/plugin-apps": "^8.0.6",
|
|
13
13
|
"@heroku-cli/plugin-apps-v5": "^8.0.5",
|
|
14
|
-
"@heroku-cli/plugin-auth": "^8.0.
|
|
15
|
-
"@heroku-cli/plugin-autocomplete": "^8.0.
|
|
16
|
-
"@heroku-cli/plugin-buildpacks": "^8.0.
|
|
17
|
-
"@heroku-cli/plugin-certs": "^8.0.
|
|
18
|
-
"@heroku-cli/plugin-certs-v5": "^8.0.
|
|
19
|
-
"@heroku-cli/plugin-ci": "^8.0.
|
|
14
|
+
"@heroku-cli/plugin-auth": "^8.0.6",
|
|
15
|
+
"@heroku-cli/plugin-autocomplete": "^8.0.6",
|
|
16
|
+
"@heroku-cli/plugin-buildpacks": "^8.0.6",
|
|
17
|
+
"@heroku-cli/plugin-certs": "^8.0.6",
|
|
18
|
+
"@heroku-cli/plugin-certs-v5": "^8.0.6",
|
|
19
|
+
"@heroku-cli/plugin-ci": "^8.0.6",
|
|
20
20
|
"@heroku-cli/plugin-ci-v5": "^8.0.5",
|
|
21
|
-
"@heroku-cli/plugin-config": "^8.0.
|
|
21
|
+
"@heroku-cli/plugin-config": "^8.0.6",
|
|
22
22
|
"@heroku-cli/plugin-container-registry-v5": "^8.0.5",
|
|
23
|
-
"@heroku-cli/plugin-git": "^8.0.
|
|
24
|
-
"@heroku-cli/plugin-local": "^8.0.
|
|
23
|
+
"@heroku-cli/plugin-git": "^8.0.6",
|
|
24
|
+
"@heroku-cli/plugin-local": "^8.0.6",
|
|
25
25
|
"@heroku-cli/plugin-oauth-v5": "^8.0.5",
|
|
26
|
-
"@heroku-cli/plugin-orgs-v5": "^8.0.
|
|
26
|
+
"@heroku-cli/plugin-orgs-v5": "^8.0.6",
|
|
27
27
|
"@heroku-cli/plugin-pg-v5": "^8.0.5",
|
|
28
|
-
"@heroku-cli/plugin-pipelines": "^8.0.
|
|
29
|
-
"@heroku-cli/plugin-ps": "^8.0.
|
|
28
|
+
"@heroku-cli/plugin-pipelines": "^8.0.6",
|
|
29
|
+
"@heroku-cli/plugin-ps": "^8.0.6",
|
|
30
30
|
"@heroku-cli/plugin-ps-exec": "^2.4.0",
|
|
31
31
|
"@heroku-cli/plugin-redis-v5": "^8.0.5",
|
|
32
|
-
"@heroku-cli/plugin-run": "^8.0.
|
|
32
|
+
"@heroku-cli/plugin-run": "^8.0.6",
|
|
33
33
|
"@heroku-cli/plugin-spaces": "^8.0.5",
|
|
34
|
-
"@heroku-cli/plugin-status": "^8.0.
|
|
35
|
-
"@heroku-cli/plugin-webhooks": "^8.0.
|
|
34
|
+
"@heroku-cli/plugin-status": "^8.0.6",
|
|
35
|
+
"@heroku-cli/plugin-webhooks": "^8.0.6",
|
|
36
36
|
"@oclif/core": "^1.26.2",
|
|
37
37
|
"@oclif/plugin-commands": "2.2.2",
|
|
38
38
|
"@oclif/plugin-help": "^5",
|
|
@@ -67,9 +67,6 @@
|
|
|
67
67
|
"@types/write-json-file": "^3.2.1",
|
|
68
68
|
"aws-sdk": "^2.421.0",
|
|
69
69
|
"chai": "^4.2.0",
|
|
70
|
-
"eslint": "^6.7.2",
|
|
71
|
-
"eslint-config-oclif": "^3.1.0",
|
|
72
|
-
"eslint-config-oclif-typescript": "^0.1.0",
|
|
73
70
|
"globby": "^10.0.1",
|
|
74
71
|
"lodash": "^4.17.11",
|
|
75
72
|
"mocha": "^5.2.0",
|
|
@@ -278,7 +275,7 @@
|
|
|
278
275
|
},
|
|
279
276
|
"repository": "heroku/cli",
|
|
280
277
|
"scripts": {
|
|
281
|
-
"lint": "eslint . --ext .ts --config
|
|
278
|
+
"lint": "eslint . --ext .ts --config ../../.eslintrc --ignore-path ../../.eslintignore-lib",
|
|
282
279
|
"build": "rm -rf lib && tsc",
|
|
283
280
|
"postpublish": "rm -f oclif.manifest.json",
|
|
284
281
|
"prepack": "yarn run build && oclif manifest",
|
|
@@ -288,5 +285,5 @@
|
|
|
288
285
|
"version": "oclif readme --multi && git add README.md ../../docs"
|
|
289
286
|
},
|
|
290
287
|
"types": "lib/index.d.ts",
|
|
291
|
-
"gitHead": "
|
|
288
|
+
"gitHead": "fea176d725fbf0caad74a8824114c78cee40d451"
|
|
292
289
|
}
|