heroku 9.1.0-beta.0 → 9.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.
@@ -16,7 +16,7 @@ class Options extends base_1.AutocompleteBase {
16
16
  // *args: refers to a Command's static args
17
17
  // *argv: refers to the current execution's command line positional input
18
18
  // Klass: (class) Command class
19
- // completion: (object) object with data/methods to build/retrive options from cache
19
+ // completion: (object) object with data/methods to build/retrieve options from cache
20
20
  // curPosition*: the current argv position the shell is trying to complete
21
21
  // options: (string) white-space separated list of values for the shell to use for completion
22
22
  async run() {
@@ -20,7 +20,7 @@ function removeDeleted(newConfig, original) {
20
20
  for (const k of Object.keys(original)) {
21
21
  // The api accepts empty strings
22
22
  // as valid env var values
23
- // In JS an empty string is falsey
23
+ // In JS an empty string is false
24
24
  if (!newConfig[k] && newConfig[k] !== '')
25
25
  newConfig[k] = null;
26
26
  }
@@ -15,6 +15,9 @@ async function selectJobs(jobs, processTypes, recursive) {
15
15
  if (processTypes.length > 0) {
16
16
  filteredJobs = DockerHelper.filterByProcessType(jobs, processTypes);
17
17
  }
18
+ else {
19
+ filteredJobs = jobs;
20
+ }
18
21
  selectedJobs = await DockerHelper.chooseJobs(filteredJobs);
19
22
  }
20
23
  else if (jobs.standard) {
@@ -240,7 +240,7 @@ export interface HerokuPlatformApiPipeline {
240
240
  [k: string]: any;
241
241
  }
242
242
  /**
243
- * A Repository is a reference to a remote DVCs codebase
243
+ * A Repository is a reference to a remote DVCS codebase
244
244
  */
245
245
  export interface KolkrabbiApiRepositories {
246
246
  /**