heroku 8.0.5 → 8.1.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/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 unicorn/no-array-callback-reference
47
47
  for (const p of dirs.map(removeEmptyDirs))
48
48
  await p;
49
49
  files = await ls(dir);
@@ -31,7 +31,6 @@ const migrate = async function () {
31
31
  const { manifest } = await fs.readJSON(p);
32
32
  for (const plugin of Object.keys(manifest.plugins)) {
33
33
  process.stderr.write(`heroku-cli: migrating ${plugin}\n`);
34
- // eslint-disable-next-line no-await-in-loop
35
34
  await exec('heroku', ['plugins:install', plugin]);
36
35
  }
37
36
  }
@@ -45,7 +44,6 @@ const migrate = async function () {
45
44
  const { manifest } = await fs.readJSON(path.join(pluginsDir, 'link.json'));
46
45
  for (const { root } of Object.values(manifest.plugins)) {
47
46
  process.stderr.write(`heroku-cli: migrating ${root}\n`);
48
- // eslint-disable-next-line no-await-in-loop
49
47
  await exec('heroku', ['plugins:link', root]);
50
48
  }
51
49
  }
@@ -1,4 +1,4 @@
1
1
  {
2
- "version": "8.0.5",
2
+ "version": "8.1.0",
3
3
  "commands": {}
4
4
  }
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.5",
4
+ "version": "8.1.0",
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.5",
12
- "@heroku-cli/plugin-apps": "^8.0.5",
11
+ "@heroku-cli/plugin-addons-v5": "^8.1.0",
12
+ "@heroku-cli/plugin-apps": "^8.1.0",
13
13
  "@heroku-cli/plugin-apps-v5": "^8.0.5",
14
- "@heroku-cli/plugin-auth": "^8.0.5",
15
- "@heroku-cli/plugin-autocomplete": "^8.0.5",
16
- "@heroku-cli/plugin-buildpacks": "^8.0.5",
17
- "@heroku-cli/plugin-certs": "^8.0.5",
18
- "@heroku-cli/plugin-certs-v5": "^8.0.5",
19
- "@heroku-cli/plugin-ci": "^8.0.5",
20
- "@heroku-cli/plugin-ci-v5": "^8.0.5",
21
- "@heroku-cli/plugin-config": "^8.0.5",
22
- "@heroku-cli/plugin-container-registry-v5": "^8.0.5",
23
- "@heroku-cli/plugin-git": "^8.0.5",
24
- "@heroku-cli/plugin-local": "^8.0.5",
25
- "@heroku-cli/plugin-oauth-v5": "^8.0.5",
26
- "@heroku-cli/plugin-orgs-v5": "^8.0.5",
27
- "@heroku-cli/plugin-pg-v5": "^8.0.5",
28
- "@heroku-cli/plugin-pipelines": "^8.0.5",
29
- "@heroku-cli/plugin-ps": "^8.0.5",
14
+ "@heroku-cli/plugin-auth": "^8.0.6",
15
+ "@heroku-cli/plugin-autocomplete": "^8.0.6",
16
+ "@heroku-cli/plugin-buildpacks": "^8.1.0",
17
+ "@heroku-cli/plugin-certs": "^8.1.0",
18
+ "@heroku-cli/plugin-certs-v5": "^8.1.0",
19
+ "@heroku-cli/plugin-ci": "^8.1.0",
20
+ "@heroku-cli/plugin-ci-v5": "^8.1.0",
21
+ "@heroku-cli/plugin-config": "^8.1.0",
22
+ "@heroku-cli/plugin-container-registry-v5": "^8.1.0",
23
+ "@heroku-cli/plugin-git": "^8.1.0",
24
+ "@heroku-cli/plugin-local": "^8.1.0",
25
+ "@heroku-cli/plugin-oauth-v5": "^8.1.0",
26
+ "@heroku-cli/plugin-orgs-v5": "^8.1.0",
27
+ "@heroku-cli/plugin-pg-v5": "^8.1.0",
28
+ "@heroku-cli/plugin-pipelines": "^8.1.0",
29
+ "@heroku-cli/plugin-ps": "^8.1.0",
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.5",
33
- "@heroku-cli/plugin-spaces": "^8.0.5",
34
- "@heroku-cli/plugin-status": "^8.0.5",
35
- "@heroku-cli/plugin-webhooks": "^8.0.5",
32
+ "@heroku-cli/plugin-run": "^8.1.0",
33
+ "@heroku-cli/plugin-spaces": "^8.1.0",
34
+ "@heroku-cli/plugin-status": "^8.1.0",
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 .eslintrc",
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": "b12810e691a539d5f6296a0438dad4bbe3ffaad2"
288
+ "gitHead": "a02268a2eae5f5d2043d3f2399606e782753f4af"
292
289
  }